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? char *arr[10];
arr is a array of 10 character pointers.
arr is a array of function pointer.
arr is a array of characters.
arr is a pointer to array of characters.
Correct Answer:
arr is a array of 10 character pointers.
Next Question→
More Questions from
Complicated Declarations
What do the following declaration signify? int (*pf)();
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)();
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment
Join Discussion
Discussion & Comments