C Pointer - C programming (MCQ) questions for Q. 27505
Q. What does the following declaration mean?
int (*ptr)[10];
- Published on 26 Feb 17a. ptr is array of pointers to 10 integers
b. ptr is a pointer to an array of 10 integers
c. ptr is an array of 10 integers
d. ptr is an pointer to array
ANSWER: ptr is a pointer to an array of 10 integers