Which of the following expression is true for the following C statement?
ptr is array with 3 elements of pointer to function returning pointer of int
ptr is array with 3 elements of pointer to function returning pointer of int
A. int **ptr[3]();
B. int *(*ptr[3])();
C. int (*(*ptr[3])());
D. None of the mentioned
Answer: Option B
Join The Discussion