Question:Is the following statement correct? If not, why not? If yes, what is the size of the array?
int array[][3] = { {1,2}, {2,3}, {3,4,2} };
A Yes, the size is three columns by two rows
B Yes, the size is two columns by two rows
C No, the first dimension is omitted
D No, one of the three initializer sets contains too many numbers
E Yes, the size is three columns by three rows
+ AnswerA
+ Report