以下结构体说明和变量定义中,正确的是( )。
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;
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;
举一反三
- 以下结构体说明和变量定义中,正确的是( ) 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: double abc(int x;int y) B: double abc(int x,y); C: double abc(int x,int y) D: double abc(int x,int 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;
- 以下选项中,能定义s为合法的结构体变量的是()。 A: typedef struct 123 B: double a; C: char b[10]; D: s; E: struct F: double a; G: char b[10]; H: s; I: struct ABC J: double a; K: char b[10]; L: ABC s; M: typedef ABC N: double a; O: char b[10]; P: ABC s;
- 若程序中有以下的说明和定义:struct abc{ int x;char y; }struct abc s1,s2;则会发生的情况是______。