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