Home » C Programming » Pointers » Question
  1. What makes the following declaration denote?
    char *s[15];
    1. s is a function pointer of 15 elements returning char
    2. s is an array of 15 element pointer to type char
    3. s is a pointer to an array of 15 elements
    4. All of above
    5. None of these
Correct Option: B

s is an array of 15 element pointer to type char



Your comments will be displayed only after manual approval.