Kizspy | Question: 38
(Choose 1 answer)
Which of the following is a valid code to use to declare and initialize a two-dimensional array?
A. int a[2,3] [[1,2,3],[4,5,6]];
B. int a = {{1,2,3},{4,5,6}};
C. int a[2][3] [[1,2,3],[4,5,6]];
D. int a[3] {{1,2,3},{4,5,6}};