Report Bug
Qus : What does the following declaration mean in C? int (*p)[10];
QusWhat does the following declaration mean in C? int (*p)[10];

A. p is a pointer to an array of 10 integers
B. p is an array of 10 integer pointers
C. p is a pointer to 10 integers
D. p is an array of pointers to 10 integers


Solution
A. p is a pointer to an array of 10 integers






Report Bug