Q. Which of the correct syntax to declare an array with 2 rows and 3 columns in C#?
β
Correct Answer: (C)
int[,] arr = new int[2,3];
You must be Logged in to update hint/solution