Vidyalelo
C Programming · Q214

Pointer

Programming · C Programming · question 214

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])();
Answer
C.
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