What is the meaning of the following declaration?
int(*p[5])();
int(*p[5])();A. p is pointer to function
B. p is array of pointer to function
C. p is pointer to such function which return type is the array
D. p is pointer to array of function
Answer: Option B

Join The Discussion