Q45
What is the correct way to declare and initialize a multidimensional array with 3 rows and 4 columns in C#?
A.
int[3, 4] matrix = new int;
B.
int matrix[3, 4];
C.
int[,] matrix = new int[3, 4];
AnswerD.
int[3][4] matrix;
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board