Which of the following is the correct syntax to declare a 3 dimensional array using pointers?
Posted: Wed Jul 13, 2022 7:54 pm
a) char *a[][];
b) char **a[];
c) char ***a;
d) all of the mentioned
b) char **a[];
c) char ***a;
d) all of the mentioned