Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
C Programming
»
Complicated Declarations
What do the following declaration signify? int (*pf)();
pf is a pointer to function.
pf is a function pointer.
pf is a pointer to a function which return int
pf is a function of pointer variable.
Correct Answer:
pf is a pointer to a function which return int
← Previous Question
Next Question→
More Questions from
Complicated Declarations
Declare the following statement? "An array of three pointers to chars".
What do the following declaration signify? int *f();
Declare the following statement? "A pointer to a function which receives an int pointer and returns float pointer".
What do the following declaration signify? char **argv;
Declare the following statement? "A pointer to a function which receives nothing and returns nothing".
What do the following declaration signify? char *scr;
What do the following declaration signify? void *cmp();
Declare the following statement? "A pointer to an array of three chars".
What do the following declaration signify? void (*cmp)();
What do the following declaration signify? int *ptr[30];
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment
Join Discussion
Discussion & Comments