Home » C Programming » Pointers » Question
  1. Which of the following is the correct syntax to declare a 3 dimensional array using pointers?
    1. char **array[];
    2. char ***array;
    3. char *array[][];
    4. All of above
    5. None of these
Correct Option: C

char *array[][];



Your comments will be displayed only after manual approval.