What makes the following declaration denote?
char *str[5];
char *str[5];
A. str is an array of 5 element pointer to type char
B. str is a pointer to an array of 5 elements
C. str is a function pointer of 5 elements returning char
D. none of the mentioned
Answer: Option A
Join The Discussion