单项选择题

以下数组定义中错误的是

A.int x[ ][3]={0};
B.int x[2][3]={{1,2},{3,4},{5,6}};
C.int x[ ][3]={{1,2,3},{4,5,6}};
D.int x[2][3]={1,2,3,4,5,6};