struct mod {int a,b,c;};main(){struct mod st[3] = {{1,2,3},{4,5,6},{7,8,9}};int total;total = st[0].a + st[1].b;printf("total=%d\n",total);}程序运行结果是( )。
A. total = 5
B. total = 6
C. total = 7
D. total = 8
查看答案
已定义以下结构体数组:struct c{int x;int y;}s[2]={2,4,6,8};语句printf("%d",s[0].y*s[1].x)的结果是()。
A. 12
B. 16
C. 24
D. 32
结构体类型与结构体变量是两个不同的概念,其区别如同int类型与int型变量的区别一样。()
A. 对
B. 错
结构体类型中的成员名,不可以与程序中的变量同名。()
A. 对
B. 错
“结构体类型名”和“数据项”的命名规则,与变量名相同。()
A. 对
B. 错