Programming in C
Programming in C
Page | 1
Section 1: Attempt All the Questions
4.In C programming language, which of the following type of operators have the highest
precedence
A. Relational operators
B. Equality operators
C. Logical operators
D. Arithmetic operators
Page | 2
D. if ((char) a){}
10. Which keyword is used to come out of a loop only for that iteration?
A. break
B. continue
C. return
D. none of the mentioned
Page | 3
D. above all
Page | 4
C. #undef
D. None of above
2. What happens if one uses variables in scanf() without using the address of operator (&)? Discuss.
2. How will you initialize a three-dimensional array threed[3][2][3]? How will you refer to the first and last
element in this array?
2. What do mean by random file access? How C implements the concept of random file access?
Page | 5