柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
以下结构体说明和变量定义中,正确的是
A.typedef struct abc{ int n;double m; }ABC; ABC x,y;
B.struct abc{ int n;double m }; struct abc x, y;
C.struct ABC{ int n;double m; } struct ABC x, y;
D.struct abc{ int n;double m; }; abc x, y;
热度🔥706
参考答案:A
解析:打开微信小程序查看本题解析
点击打开小程序查看解析
content_copy
扫码免费计算机二级刷题
2024年计算机等级考试题库
推荐
命令按钮Command1的事件过程如下:Private Sub Command1_Click() Dim arr(5, 5)As Integer Dim i As Integer, j As Integer For i=1 To 4 For j=2 To 4 arr(i, j)=i+j Next j Next i Print arr(1, 3)+arr(3, 4)End Sub执行上述过程,输出结果是( )。
下列关于栈的叙述中,正确的是
8251A工作在同步模式时,波特率因子为
某系统总体结构如下图所示。该系统结构图的深度是( )。
标签
二级C语言
abc
struct
typedef
int