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

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Helps to avoid repeated programming across programs.
All of these
Makes the debugging task easier.
Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP