MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is the correct syntax to declare a 3 dimensional array using pointers? |
| A. | char *a[][]; |
| B. | char **a[]; |
| C. | char ***a; |
| D. | all of the mentioned |
| Answer» B. char **a[]; | |