Q. What does the following statement mean?
Code:int (*fptr)(char*)
β
Correct Answer: (D)
A pointer to a function taking a char * argument and returning an int
int (*fptr)(char*)
You must be Logged in to update hint/solution