Open In App

AKTU 1st Year Sem 1 Solved Paper 2015-16 | COMP. SYSTEM & C PROGRAMMING | Sec C

Paper download link: Paper | Sem 1 | 2015-16

B.Tech. (SEM-I) THEORY EXAMINATION 2015-16 COMPUTER SYSTEM & PROGRAMMING IN C



Time: 3hrs Total Marks: 100 Note:-

Section – C



Attempt any two questions from this section: (15*2 = 30)

10. What are the various types of files that can be created in C language? Also give different modes in which these files can be used with proper syntax. Write a program in C language to append some more text at the end of an existed text file.
File opening modes in C:

11. a) Write a C program to check whether a given square matrix is symmetric or not
 




// Simple C code for check a matrix is
// symmetric or not.
 
#include <stdio.h>
 
const int MAX = 3;
 
// Fills transpose of mat[N][N] in tr[N][N]
void transpose(int mat[][MAX], int tr[][MAX], int N)
{
    for (int i = 0; i < N; i++)
        for (int j = 0; j < N; j++)
            tr[i][j] = mat[j][i];
}
 
// Returns true if mat[N][N] is symmetric, else false
int isSymmetric(int mat[][MAX], int N)
{
    int tr[N][MAX];
    transpose(mat, tr, N);
    for (int i = 0; i < N; i++)
        for (int j = 0; j < N; j++)
            if (mat[i][j] != tr[i][j])
                return 0;
    return 1;
}
 
// Driver code
int main()
{
    int mat[3][3] = { { 1, 3, 5 },
                      { 3, 2, 4 },
                      { 5, 4, 1 } };
 
    if (isSymmetric(mat, 3) == 1)
        printf("Yes");
    else
        printf("No");
    return 0;
}

11. (b) Define data types in C. Discuss primitive data types in terms of memory size, format specifier and range.
Each variable in C has an associated data type. Each data type requires different amounts of memory and has some specific operations which can be performed over it. Let us briefly describe them one by one: Following are the examples of some very common data types used in C:

Different data types also have different ranges upto which they can store numbers. These ranges may vary from compiler to compiler. Below is list of ranges along with the memory requirement and format specifiers on 32 bit gcc compiler.

Data Type Memory (bytes) Range Format Specifier
short int 2 -32, 768 to 32, 767 %hd
unsigned short int 2 0 to 65, 535 %hu
unsigned int 4 0 to 4, 294, 967, 295 %u
int 4 -2, 147, 483, 648 to 2, 147, 483, 647 %d
long int 4 -2, 147, 483, 648 to 2, 147, 483, 647 %ld
unsigned long int 4 0 to 4, 294, 967, 295 %lu
long long int 8 -(2^63) to (2^63)-1 %lld
unsigned long long int 8 0 to 18, 446, 744, 073, 709, 551, 615 %llu
signed char 1 -128 to 127 %c
unsigned char 1 0 to 255 %c
float 4   %f
double 8   %lf
long double 12   %Lf

We can use the sizeof() operator to check the size of a variable. 11. (c) List out various file operations in ‘C’. Write a C program to count the number of characters in a file.
So far the operations using C program are done on a prompt / terminal which are not stored anywhere. But in software industry, most of the programs are written to store the information fetched from the program. One such way is to store the fetched information in a file. Different operations that can be performed on a file are:

  1. Creation of a new file (fopen with attributes as “a” or “a+” or “w” or “w++”)
  2. Opening an existing file (fopen)
  3. Reading from file (fscanf or fgetc)
  4. Writing to a file (filePointerrintf or filePointeruts)
  5. Moving to a specific location in a file (fseek, rewind)
  6. Closing a file (fclose)

The text in the brackets denotes the functions used for performing those operations. Functions in File Operations: 12. (a) Write the difference between type conversion and type casting. What are the escape sequences characters?
In C programming language, there are 256 numbers of characters in character set. The entire character set is divided into 2 parts i.e. the ASCII characters set and the extended ASCII characters set. But apart from that, some other characters are also there which are not the part of any characters set, known as ESCAPE characters.

List of Escape Sequences

\a    Alarm or Beep   
\b    Backspace
\f    Form Feed
\n    New Line
\r    Carriage Return
\t    Tab (Horizontal)
\v    Vertical Tab
\\    Backslash
\'    Single Quote
\"    Double Quote
\?    Question Mark
\ooo  octal number
\xhh  hexadecimal number
\0    Null

Example: 




// C program to illustrate
// \b escape sequence
#include <stdio.h>
int main(void)
{
    // \b - backspace character transfers
    // the cursor one character back with
    // or without deleting on different
    // compilers.
    printf("Hello Geeks\b\b\b\bF");
    return (0);
}

Output:

The output is dependent upon compiler.

12. (b) What are the different types of operators in C language and also write down the difference between the associativity and precedence of operators.
Operators are the foundation of any programming language. Thus the functionality of C/C++ programming language is incomplete without the use of operators. We can define operators as symbols that helps us to perform specific mathematical and logical computations on operands. In other words we can say that an operator operates the operands. For example, consider the below statement:

c = a + b;

Here, ‘+’ is the operator known as addition operator and ‘a’ and ‘b’ are operands. The addition operator tells the compiler to add both of the operands ‘a’ and ‘b’. C/C++ has many built-in operator types and they can be classified as:


Article Tags :