Q214
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
A.
int **ptr[3]();
B.
int *(*ptr[3])();
AnswerC.
int (*(*ptr[3])());
D.
None of the mentioned
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board