定义以下结构体数组structc{intx;inty;}s[2]={1,3,2,7};语句printf("%d",s[0].x*s[1].x)的输出结果为()。
举一反三
- 2 定义以下结构体数组 structc intx inty s 2 2 4 6 8 语句printf d s 0 y s 1 x 的结果是
- 【12.3.5】定义以下结构体数组 structc { intx; inty; }s[2]={1,3,2,7}; 语句printf("%d", s[0].x*s[1].x);的输出结果为 。 A: 14 B: 6 C: 2 D: 21
- 如果有以下定义语句,则输出结果为()。struct{int x, y;}...d”, s[0].y/s[1].x );
- 定义以下结构体类型 struct s { int x; float f; }a[3]; 语句printf("%d",sizeof(a))的输出结果为
- 定义以下结构体数组 struct c { int x; int y; }s[2]={1,3,2,7}; 语句printf("%d",s[0].x*s[1].x)的输出结果为 ( )