What do the following declaration signify?
char **argv;
a. argv is a pointer to pointer.
b. argv is a pointer to a char pointer.
c. argv is a function pointer.
d. argv is a member of function pointer.
ANSWER: argv is a pointer to a char pointer.
char **argv;
a. argv is a pointer to pointer.
b. argv is a pointer to a char pointer.
c. argv is a function pointer.
d. argv is a member of function pointer.
ANSWER: argv is a pointer to a char pointer.
Post a Comment