C Programming
What does the following declaration mean?int (*ptr)[10];

ptr is an array of 10 integers
ptr is an pointer to array
ptr is a pointer to an array of 10 integers
ptr is array of pointers to 10 integers

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP