Declare the following statement? "An array of three pointers to chars".
char *ptr[3]();
char *ptr[3];
char (*ptr[3])();
char **ptr[3];
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment