设有以下说明语句:
struct 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是结构体类型名
设有以下说明语句:
struct ex
inc 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是结构体类型
设有以下说明语句
struct 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是结构体类型名
设有以下声明语句 struct ex { int x;float y;char z;}example; 则下面的叙述中不正确的是______。
A:struct是结构体类型的关键字 B:example是结构体类型名 C:x,y,z都是结构体成员名 D:struct ex是结构体类型
设有以下说明语句 struct num { int a; float b; }numl;则下面的叙述不正确的是______。
A:struct是结构体类型的关键字 B:struct num是用户定义的结构体类型 C:numl是用户定义的结构体类型名 D:a和b都是结构体成员名
设有以下说明语句 struct ex {int x;float y;char z;}example; 则下面的叙述中不正确的是
A:struct结构体类型的关键字 B:example是结构体类型名 C:x,y,z都是结构体成员名 D:struct ex是结构体类型名
设有以下语句: struct SS { int no; char name[10];}PERSON; 则下面叙述中错误的是 ( )
A:struct是结构体类型的关键字 B:struct SS是结构体类型 C:PERSON是结构体类型名 D:name是结构体成员名