Q:

correct syntax to declare a 3 dimensional array using pointers

0

correct syntax to declare a 3 dimensional array using pointers


  1. char $a[][];
  2. char *a[][];
  3. char &a[][]
  4. None of the above

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

char *a[][];

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now
what will be the output of the following program... >>
<< A function q that accepts a pointer to a character...