Q. Which of the following is a correct way to declare a 2D array in C?
β
Correct Answer: (B)
int array[10][10];
Explanation: This is the correct syntax for declaring a 2D array in C.