C Programming
The declarationint (*p) [5];means

p is a pointer to a 5 elements integer array.
p is one dimensional array of size 5, of pointers to integers.
The same as int *p[
None of these.

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on a new line
comes before the first executable statement
has # as the first character
need not start on the first column

ANSWER DOWNLOAD EXAMIANS APP