单项选择题
下列二维数组的说明中,不正确的是( )。
A) float a[][4]=0,1,8,5,9;
B) int a[3][4]
C) #define N 5
float a[N][3]
D) int a[2][9.5];
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
下面结构体的定义语句中,错误的是( )。
A.struct ordint x;int y;int z;;struct ord a;
B.struct ordint x;int y;int z;struct ord a;
C.struct ordint x;int y;int z;a;
D.structint x;int y;int z;a;
点击查看答案&解析
单项选择题
下面结构体的定义语句中,错误的是
A) struct ordint x; int y; int z;; struct ord a;
B) struct ordint x; int y; int z; struct ord a;
C) struct ordint x; int y; int z; a;
D) structint x; int y; int z; a;
点击查看答案&解析
相关试题
下列程序的运行结果为( )。 #deflne ...