柠檬试题库
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;
热度🔥799
参考答案:A
解析:
【解析】A)选项struct ord {int x;int y;int z;} struct ord a;错误,不能在定义结构体的同时,又用结构体类型名定义变量。应该写成B)选项或者D)选项的格式。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
在VBA中要打开名为“学生信息录入”的窗体,应使用的语句是( )。
结构化程序所要求的基本结构不包括( )。
数据库系统中,存储在计算机内有结构的数据集合称为( )。
下列选项中,不是面向对象主要特征的是( )。
标签
二级C语言
int
struct
ord
定义