What does the following statement mean?
int (*fp)(char*)
1
pointer to a pointer
2
pointer to an array of chars
3
pointer to function taking a char* argument and returns an int
4
More than one of the above
5
None of the above
What does the following statement mean?
int (*fp)(char*)