以下结构体类型说明和变量定义中正确的是( )。
A.typedef struct
B.struct REC; {int n;char c;}REC; {int n;char c;}; REC t1,t2; REC t1,t2;
C.typedef struct REC;
D.struct {int n=0;char c='A';}t1,t2; {int n;char c;}REC; REC t1,t2;
第1题:
若有以下语句:typedef struct S{int 9;char h;}T;以下叙述中正确的是( )。
A.可用s定义结构体变量
B.可用T定义结构体变量
C.S是struct类型的变量
D.T是struct S类型的变量
第2题:
以下结构体类型说明和变量定义中正确的是()。
A.typedef struct {int n; char c;} REC; REC x,y;
B.struct REC; {int n; char c;}; REC x,y;
C.typedef struct REC ; {int n=0; char c=’A’; } x,y;
D.struct {int n; char c; } REC x,y;
第3题:
3、以下结构体类型说明和变量定义中正确的是()
A.struct REC ; { int n; char c; }; REC t1,t2;
B.typedef struct { int n; char c; } REC; REC t1,t2;
C.typedef struct REC; { int n=0; char c='A'; } t1,t2;
D.struct { int n; char c; } REC; REC t1,t2;
第4题:
以下结构体类型说明和变量定义中正确的是( )。
第5题:
以下结构体类型说明和变量定义中正确的是()
A.struct REC ; { int n; char c; }; REC t1,t2;
B.typedef struct { int n; char c; } REC; REC t1,t2;
C.typedef struct REC; { int n=0; char c='A'; } t1,t2;
D.struct { int n; char c; } REC; REC t1,t2;