Vidyalelo
C Programming · Q153

Pointer

Programming · C Programming · question 153

Q153

Which of the following is the correct syntax to declare a 3 dimensional array using pointers?

A.
char *a[][];
Answer
B.
char **a[];
C.
char ***a;
D.
all of the mentioned

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board