单项选择题
下面结构体的定义语句中,错误的是( )。
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;
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有以下程序: #include<stdio.h> main() int n=2,k=0; while(k++&&n++>2); printf( %d%d n ,k,n); 程序运行后的输出结果是( )。
A.02
B.13
C.57
D.12
点击查看答案&解析
单项选择题
有以下程序: #include<stdio.h> main() int a=1,b=0; printf( %d, ,b=a+b); printf( %d n ,a=2+b); 程序运行后的输出结果是( )。
A.0,0
B.1,0
C.3,2
D.1,2
点击查看答案&解析
相关试题
有以下程序: #include<stdio.h> mai...
若有语句“doube x=17;int y;”,当...
有以下程序: #include<stdio.h> fun...
有以下程序: #include<stdio.h> typ...
以下程序运行后的输出结果是______。...