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

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

ANSWER DOWNLOAD EXAMIANS APP