struct是结构体类型的关键字
example是结构体类型名
x,y,z都是结构体成员名
structex是结构体类型
第1题:
设有以下说明语句
struct ex
{ int x ; float y; char z ;} example;
则下面的叙述中不正确的是
A.struct结构体类型的关键字
B.example是结构体类型名
C.x,y,z都是结构体成员名
D.struct ex是结构体类型名
第2题:
设有下列说明语句: strcut str {int x;float y;char z;}st; 则下列的叙述中不正确的是( )。
A.00001111
B.11111101
C.00000010
D.11000000
第3题:
A、struct是结构体类型的关键字
B、example是结构体类型名
C、x,y,z都是结构体成员名
D、structex是结构体类型名
第4题:
设有以下说明语句:则下面的叙述中不正确的是( )。
A.struct结构体类型的关键字
B.example是结构体类型名
C.x,y,z都是结构体成员名
D.struet ex是结构体类型名
第5题:
此题为判断题(对,错)。
第6题:
设有以下说明语句
struct stu
{int a;
float b;
} stutype;
则下面的叙述不正确的是
A.struct是结构体类型的关键字
B.struct stu是用户定义的结构体类型
C.stutype是用户定义的结构体类型名
D.a和b都是结构体成员名
第7题:
A、x
B、charstr[80];str=”abcdefg”;
C、char*pstr=”abcdefg”
D、char*pstr=NULL;pstr=”abcdefg”;
第8题:
A、struct结构体类型的关键字
B、example是结构体类型名
C、x,y,z都是结构体成员名
D、structex是结构体类型名
第9题:
A.‘a’
B.0
C.65
D.‘A’
第10题:
设有以下语句:intx=10;x+=3+x%(3),则x的值是()。
A.14
B.15
C.11
D.12