Answer: c
Explanation: It is primarily used for running a function upon exiting the program.
a. Take care of conditional compilationg
b. Take care of include files
c. act before compilation
d. All of above
Answer: Option d
Explanation:no
a. need not start on a new line
b. need not start on the first column
c. comes before the first executable statement
d. has # as the first character
a. 4
b. 6
c. 5
d. Error
The correct option is (b)
Explanation:
a[i] is equals to *(a + i),
so (arr+ 1)[5] is *(arr + 1 + 5), i.e. arr[6].
a. Sequential
b. Sequential and random
c. Random
d. Non of these
The correct option is (a)
Explanation:
a. Garbage value
b. 0
c. 6
d. 8
The correct option is (b)
Explanation:
When an array is initialized at the time of declaration then the remaining elements of the array is initialized to 0 by the compiler default.