下列选择中,不能正确定义二维数组的是()。
A:int a[2][2]={{1},{2}};
B:int a[][2]={1,2,3,4};
C:int a[2][]={{1,2},{3,4}};
D:int a[2][2]={{1},2,3};
出自:考研