-->
当前位置:首页 > Luz 第6321页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:以下关于C语言数据类型使用的叙述中错误的是

Luz5年前 (2021-05-10)1121
以下关于C语言数据类型使用的叙述中错误的是@[B](2)A. 整数类型表示的自然数是准确无误差的B. 若只处理"真"和"假"两种逻辑值,应使用逻辑类型C. 若要保存带有多位小数的数据,可使用双精度类型D. 若要处理如"人员信息"等含有不同…

单选题:有以下程序

Luz5年前 (2021-05-10)840
有以下程序 #include struct S{int n; int a[20]; }; void f(struct S *p) { int i,j, t;…

单选题:以下叙述中正确的是

Luz5年前 (2021-05-10)1060
以下叙述中正确的是 @[A](2)A. 一个结构体类型可以由多个称为成员(或域) 的成分组成B. 在定义结构体类型时,编译程序就为它分配了内存空间C. 结构体类型中的成分只能是C语言中预先定义的基本数据类型D. 结构体类型中各个成分的类…

单选题:以下程序运行后的输出结果是

Luz5年前 (2021-05-10)686
以下程序运行后的输出结果是#include #include struct S{ char name[10];};main() {struct S s1, s2;strcpy(s1.name, "XXX");strcpy(s…

单选题:有以下程序

Luz5年前 (2021-05-10)737
有以下程序#include struct ball{ char color[10]; int dim; };main( ){ struct ball list[2] = {{"white", 2}, {"y…

单选题:设有定义:

Luz5年前 (2021-05-10)704
设有定义: struct complex { int real,unreal;} data1={1,8},data2;则以下赋值语句中错误的是@[D](2)A. data2.real=data1.unreal;B. data…

单选题:有以下定义,能输出字母M的语句是

Luz5年前 (2021-05-10)893
有以下定义,能输出字母M的语句是 struct person { char name[10]; int age; }; struct person class[10]={ "Johu",17,…

单选题:以下程序运行后的输出结果是

Luz5年前 (2021-05-10)807
以下程序运行后的输出结果是#include struct tt{ int x; struct tt *y; } s[3]={ 1,0,2,0,3,0};main( ){ struct tt *p=s+1; p-˃y=s;…

单选题:以下程序运行后的输出结果是

Luz5年前 (2021-05-10)914
以下程序运行后的输出结果是#include #include struct S{ char name[10]; };main() { struct S s1, s2; strcpy(s1.name, "12345")…

单选题:以下程序运行后的输出结果是:

Luz5年前 (2021-05-10)790
以下程序运行后的输出结果是:#include struct S{ int a, b; }data[2]={10,100,20,200};main(){ struct S p=data[1]; printf("%d\n", +…