Discussion :: Complicated Declarations
-
Is the following declaration correct?
void(*f)(int, void(*)());
Answer : Option A
Explanation :
f is a pointer to a function which returns nothing and receives as its parameter an integer and a pointer to a function which receives nothing and returns nothing.
Be The First To Comment