柠檬试题库
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;
热度🔥776
参考答案:A
解析:
【解析】A)选项struct ord {int x;int y;int z;} struct ord a;错误,不能在定义结构体的同时,又用结构体类型名定义变量。应该写成B)选项或者D)选项的格式。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
能直接与CPU交换信息的存储器是()。
用8位二进制数能表示的最大的无符号整数等于十进制整数()。
下列不是实时操作系统的是( )。
从网络设计者角度看,Internet是一种
标签
二级C语言
int
struct
ord
定义