1.

What makes the following declaration denote?
char *s[15];

A. s is a function pointer of 15 elements returning char
B. s is an array of 15 element pointer to type char
C. s is a pointer to an array of 15 elements
D. All of above
E. None of these
Answer» C. s is a pointer to an array of 15 elements


Discussion

No Comment Found