以下结构体的定义语句中,错误的是_____
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;
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;
举一反三
- 以下结构体的定义语句中,错误的是_____ 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;
- 以下结构体定义错误的是 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;
- #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 test{int a; int b; int c;}; struct test y; B: struct test{ int a; int b; int c;} struct test y; C: struct test{ int a; int b; int c;} y; D: struct { int a; int b; int c;} y;