C语言中 为啥int a[][]={{1,2,3}{4,5,6}{7,8,9}};正确而int a[][4]={6};

不是说二维数组第一维可以不指定 第二维长度不能省吗

第二维长度需要指定,第一维不需要。
int a[][]应该是不对的。
可以在编译器里面试一试。追问

卷子上的答案 我也感觉不对 但是卷子上有两题都是这个答案 你能帮忙试一下吗 我c语言不太会 应付考试 呵呵

追答

int a[][] = {{1,2,3},{4,5,6}};的编译结果为:
F:\codeblocks\dfadf\main.cpp|4|error: declaration of `a' as multidimensional array must have bounds for all dimensions except the first|
意思是除了第一维,其它维的度必须明确指定。
答案应该有问题。

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答