Home » C Programming » Variables » Question
  1. Which of the following is not a pointer declaration?
    1. char *s;
    2. char b[15];
    3. char b;
    4. char b[] = {‘11’, ‘12’, ‘13’, ‘14’};
    5. None of these
Correct Option: C

Array declarations are pointer declarations.



Your comments will be displayed only after manual approval.