以下结构体定义错误的是
A: struct ord {int x; int y} struct ord a;
B: struct ord {int x; int y} ; struct ord a;
C: struct ord {int x; int y} a;
D: struct {int x; int y} a;
A: struct ord {int x; int y} struct ord a;
B: struct ord {int x; int y} ; struct ord a;
C: struct ord {int x; int y} a;
D: struct {int x; int y} a;
举一反三
- 下面结构体的定义语句中,正确的是( ) A: struct { int x; int y; int z;}ord;struct ord a; B: struct { int x; int y; int z;}ord;ord a; C: struct ord{ int x; int y; int z;};struct ord a; D: struct { int x, int y, int z;}a;
- 以下结构体的定义语句中,错误的是_____ A: struct ord{ int x; int y; int z;};struct ord a; B: struct ord{ int x; int y; int z;}struct ord a; C: struct ord{ int x; int y; int z;}a; D: struct{ int x; int y; int z;}a;
- #include struct ord{ int x,y;} dt[2]={1,2,3,4};int main(){ struct ord *p=dt; printf("%d,",++p->x); printf("%d\n",++p->y); return 0;} A: 2,3 B: 1,2 C: 3,4 D: 4,1
- 以下定义错误的是( )。 未知类型:{'options': ['struct c{ int x;\xa0 \xa0 \xa0 int y;}s;', 'struct\xa0{ int x;\xa0 \xa0 \xa0 int y;}s;', 'struct c s{ int x;\xa0 \xa0 \xa0 int y;};', 'struct c{ int x;\xa0 \xa0 \xa0 int y;};Struct c s;'], 'type': 102}
- 以下结构体说明和变量定义中,正确的是( )。 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;