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

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

ANSWER DOWNLOAD EXAMIANS APP