定义以下结构体数组struct C{ int x; int y;}s[2]={1,3,2,7};语句printf("%d",s[0].y*s[1].x)的输出结果为( )
A: 14
B: 6
C: 2
D: 21
A: 14
B: 6
C: 2
D: 21
举一反三
- 定义以下结构体数组struct c { int x; int y; }s[2]={1,3,2,7};那么语句printf("%d",s[0].x*s[1].x)的输出结果为() A: 14 B: 6 C: 2 D: 21
- 定义以下结构体数组 struct c { int x; int y; }s[2]={1,3,2,7}; 语句printf("%d",s[0].x*s[1].x)的输出结果为 ( )
- 如果有定义语句:struct { int x,; int y; } s[2] = { { 1, 3 }, { 2, 7 } };则语句:printf(“%d\n”, s[0].y/s[1].x ); 输出结果为( )。 A: 0 B: 1 C: 2 D: 3
- 定义以下结构体数组: struct c { int x,yp; }s[2]={1,3,2,7}; 语句:printf("%d",s[0].x*s[1].x);的输出结果是( ) A: 14 B: 6 C: 2 D: 21
- 中国大学MOOC: 定义以下结构体数组 struct c {int x; int y; } s[2]={1,3,2,7};语句printf(%d,s[0].x*s[1].y)的输出结果为