单项选择题
下面结构体的定义语句中,错误的是( )。
A.struct ord int x;int y;int z;;struct ord a;
B.struct ord int x;int y;int z; struct ord a;
C.struct ord int x;int y;int z;a;
D.struct int x;int y;int z;a;
点击查看答案
<上一题
目录
下一题>
热门
试题
单项选择题
以下程序的输出结果是( ), int a,b; void fun() a=100;b=200; void main() int a=5,b=7; fun(); printf( %d%d n ,a,b);
A.100200
B.57
C.200100
D.75
点击查看答案
单项选择题
下面程序的输出结果为( )。 main() int a=1,b=0; switch(a) case 1:switch (b) case 0:printf( **0** );break; case 1:printf( **1** );break; case 2:printf( **2** );break;
A.**0**
B.**0****2**
C.**0****1****2**
D.有语法错误
点击查看答案
相关试题
fp
x>=1
fname
设有定义: struct person int ID;cha...
有以下程序: #include <stdio.h> m...