若有以下数组定义,其中不正确的是
int a[2][3];
int b[][3]={0,1,2,3};
int c[100][100]={0};
int d[3][]={{1,2},{1,2,3},{1,2,3,4}};
发表评论