以下选项中不能正确把cl定义成结构体变量的是
A.struct color cl { int red; int green; int blue; }
B.typedef struct { int red; int green; int blue; } COLOR; COLOR cl;
C.struct color { int red; int green; int blue; } cl;
D.struct { int red; int green; int blue; } cl;
第1题:
以下选项中不能正确把cl定义成结构体变量的是
A.typedef struct { int red; int green; int blue; } COLOR; COLOR cl;
B.struct color cl { int red; int green; int blue; }
C.struct color { int red; int green; int blue; } cl;
D.struct { int red; int green; int blue; } cl;
第2题:
以下结构体类型说明和变量定义中正确的是( )。
A.
B.

C.
D.
第3题:
若有以下语句:typedef struct S{int 9;char h;}T;以下叙述中正确的是( )。
A.可用s定义结构体变量
B.可用T定义结构体变量
C.S是struct类型的变量
D.T是struct S类型的变量
第4题:
设有以下语句:typedef struct TY{char C;int a{4 1;}CIN;
则下面叙述中正确的是( )。
A.CIN是struct Tr类型的变量
B.TT是struct类型的变量
C.可以用,lr定义结构体变量
D.可以用CIN定义结构体变量
第5题:
以下选项中能正确把c1定义成结构体变量的是( )。
A.typedef struct { int red; int red; int green; int blue; }COLOR; COLOR c1;
B.struct color c1 { int red int red; int green int blue; };
C.stmctcolor { int red, int green; int blue; }c1;
D.struct { int red; int green; int blue; }c1;
第6题:
以下结构体说明和变量定义中,正确的是

第7题:
结构体变量的定义格式正确的是()
第8题:
指针只能定义成变量,不能定义成常量
第9题:
关于结构体定义描述正确的是()
第10题:
struct结构名 指针变量名
struct结构名 变量名
static结构名 指针变量名
struct指针变量名 结构名
第11题:
CIN是structTT类型的变量
TT是struct类型的变量
可以用TT定义结构体变量
可以用CIN定义结构体变量
第12题:
可用S定义结构体变量
可用T定义结构体变量
S是struct类型的变量
T是struct S类型的变量
第13题:
以下选项中不能正确把c1定义成结构体变量的是
A.typedef struct { int red; int green;; int blue; }COLOR; COLOR cl;
B.struct color cl { int red; int green; int blue; };
C.struet color { int red; int green; int blue; }c1;
D.struct { int red; int green; int blue; }cl;
第14题:
以下结构体类型说明和变量定义中正确的是( )。

A.A
B.B
C.C
D.D
第15题:
以下结构体类型说明和变量定义中正确的是( )。

第16题:
下列选项中不能正确定义结构体的是_______。
A.typedef struct
B.struct color cl {int red; {int red; int green; int green; int blue; int blue; }COLOR; }; COLOR cl;
C.struct color
D.struct {int red; {int red; int green; int green; int blue; int blue; }cl; }cl;
第17题:
以下对C语言中共用体类型数据的正确叙述是______。
A.可以对共用体变量名直接赋值
B.一个共用体变量中可以同时存放其所有成员
C.一个共用体变量中不能同时存放其所有成员
D.共用体类型定义中不能出现结构体类型的成员
第18题:
以下选项中,能定义S为合法的结构体变量的是( )。
A.
B.
C.
D.
第19题:
数据结构里,下列选项中是定义结构体类型的指针变量的格式的是()。
第20题:
C语言中共用体类型数据的叙述正确的是()
第21题:
结构体数组名不能作为实参传给函数
结构体变量的地址不能作为实参传给函数
结构体中可以含有指向本结构体的指针成员
即使是同类型的结构体变量,也不能进行整体赋值
第22题:
struct结构名变量名
static结构名变量名
function结构名变量名
struct变量名结构名
第23题:
struct结构体名 指针变量名;
struct结构体名;
struct指针变量名;
struct指针变量名 结构体名;
第24题:
struct结构名指针变量名
struct结构名变量名
static结构名指针变量名
struct指针变量名结构名