-
What is the meaning of the following declaration?
int(*p[5])();
-
- p is pointer to array of function
- p is pointer to function
- p is array of pointer to function
- p is pointer to such function which return type is the array
- None of these
Correct Option: C
In the above declaration the variable p is the array, not the pointer.