以下数组定义中不正确的是 ______。A.int a[2][3]B.int b[][3]={0};C.int c[1][1]={0};D.int d[3]

题目

以下数组定义中不正确的是 ______。

A.int a[2][3]

B.int b[][3]={0};

C.int c[1][1]={0};

D.int d[3][]={{1,2},(1,2,3}{1,2,3,4}};

参考答案和解析
正确答案:D