柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
下面结构体的定义语句中,错误的是( )。
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;
热度🔥781
参考答案:A
解析:
【解析】A)选项struct ord {int x;int y;int z;} struct ord a;错误,不能在定义结构体的同时,又用结构体类型名定义变量。应该写成B)选项或者D)选项的格式。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
组成一个计算机系统的两大部分是()。
有以下程序 #include #include void fun (char *w, int m ) { char s, *p1, *p2; p1=w; p2=w+m-1; while ( p1
下列各种情况中,一定不会引起进程调度的操作是
下列各进制的整数中,值最小的是( )。
标签
二级C语言
int
struct
ord
定义