Q. For the following declaration of a function in C, pick the best statement
Code:int [] fun(void (*fptr)(int *));
β
Correct Answer: (A)
It will result in compile error.
int [] fun(void (*fptr)(int *));
You must be Logged in to update hint/solution