Variable Types
- What does the following statement mean?
int (*fp)(char*)
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
pointer to function taking a char* argument and returns an int
- Identify the type of the variables.
typedef char* CHAR;
CHAR a,b;
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
char*