Report Bug
Qus : Which of the following is the correct syntax for declaring a 2D array in C?
QusWhich of the following is the correct syntax for declaring a 2D array in C?

A. int arr[10][10];
B. int arr[10,10];
C. array int arr[10][10];
D. int arr{10}{10};


Solution
A. int arr[10][10];






Report Bug