设有以下语句: struct SS { int no; char name[10];}PERSON; 则下面叙述中错误的是 ( )A.struct是结构体类型的关键字B.struct SS是结构体类型C.PERSON是结构体类型名D.name是结构体成员名

设有以下语句: struct SS { int no; char name[10];}PERSON; 则下面叙述中错误的是 ( )

A.struct是结构体类型的关键字

B.struct SS是结构体类型

C.PERSON是结构体类型名

D.name是结构体成员名


相关考题:

设有以下说明语句struct ex{ int x ; float y; char z ;} example;则下面的叙述中不正确的是A.struct结构体类型的关键字B.example是结构体类型名C.x,y,z都是结构体成员名D.struct ex是结构体类型名

设有以下说明语句:则下面的叙述中不正确的是( )。A.struct结构体类型的关键字B.example是结构体类型名C.x,y,z都是结构体成员名D.struet ex是结构体类型名

设有以下C语言说明语句:struct ex{int x;float y;char z;} example则下面的叙述中不正确的是(52)。A.struct是结构体类型的关键字B.x、y、z都是结构体成员名C.struet ex是结构体类型D.example是结构体类型名

设有以下说明语句 struct ex {int x;float y;char z;}example; 则下面的叙述中不正确的是A.struct结构体类型的关键字B.example是结构体类型名C.x,y,z都是结构体成员名D.struct ex是结构体类型名

设有以下说明语句: struct ex { int x;floct y;char z;} example; 则下面的叙述中不正确的是 ( )A.struct是结构体类型的关键字B.example是结构体类型名C.x,y,z都是结构体成员名D.struct ex是结构体类型

设有以下声明语句 street ex { int x;float y;char z;} example; 则下面的叙述中不正确的是 ______ 。A.struct是结构体类型的关键字B.example是结构体类型名C.x,y,z都是结构体成员名D.struct ex是结构体类型

设有以下声明语句 struct ex { int x;float y;char z;}example; 则下面的叙述中不正确的是______。A.struct是结构体类型的关键字B.example是结构体类型名C.x,y,z都是结构体成员名D.struct ex是结构体类型

设有以下C语言说明语句:struct ex{int x;float y;char z;}example;则下面的叙述中不正确的是( )。A.struct是结构体类型的关键字B.x、y、z都是结构体成员名C.ex是结构体名D.example是结构体类型名

1、在如下结构体定义中,不正确的是()。A.struct teacher { int no; char name[10]; float salary; };B.struct tea[20] { int no; char name[10]; float salary; };C.struct teacher { int no; char name[10]; float salary; }tea;D.struct { int no; char name[10]; float salary; }tea;