丙肝与乙肝有什么区别:C语言程序设计考题

来源:百度文库 编辑:中科新闻网 时间:2024/05/05 23:08:34
设有定义语句"struct abc {int x;int y;} d[2]={{1,3},{2,7}};",则printf("%d\n",d[0].y/d[0].x*d[1].x);的输出是()
a.0 b.1 c.3 d.6

d
(3/1)*2=6

d[0].x=1
d[0].y=3
d[1].x=2
d[1].y=7