Discussion :: Complicated Declarations
-
Is the following declaration correct?
char (* ( *f())[])();
Answer : Option A
Explanation :
f is a function that returns a pointer to an array of pointers to functions that return a char.
Be The First To Comment