设有定义:struct {int a; float b; char c;} abc, *p_abc=&abc; 则对结构体成员a的引用方法可以是abc.a和 。
举一反三
- 设有定义语句“struct {int a;float b;char c;}abc;”,则对结构体成员a的引用可以是abc->a。 ()
- 设有以下说明语句,则下面的叙述正确的是( )。struct abc{int m; float n;}stype; A: struct是结构体类型的关键字 B: abc是用户定义的结构体名 C: m和n都是结构体成员 D: stype是用户定义的结构体变量名 E: struct abc 是结构体类型名
- 以下结构体说明和变量定义中,正确的是( ) A: typedef struct abc{ int n;double m; }ABC;ABC x,y; B: struct abc{ int n;double m };struct abc x, y; C: struct ABC{ int n;double m; }struct ABC x, y; D: struct abc{ int n;double m; };abc x, y;
- 以下结构体说明和变量定义中,正确的是( )。 A: struct abc{ int n;double m );struct abc x, y; B: struct ABC{ int n;double m; }struct ABC x, y; C: typedef struct abc{ int n;double m; }ABC;ABC x,y; D: D) struct abc{ int n;double m; };abc x,y;
- 以下选项中,能定义s为合法的结构体变量的是 。 A: typedef struct abc { double a ; char b[10]; }s; B: struct { double a ; char b[10]; }s; C: struct ABC{ double a ; char b[10]; } ; ABC s; D: typedef struct ABC{ double a ; char b[10]; } ; ABC s;