单项选择题
以下程序的输出结果是()
#include
union pw
{int i;char ch[2];}a;
main( )
{a.ch[0]=13;a.ch[1]=0;printf(”%d\n”,a.i);}
(注意:ch[0]在低字节,ch[1]在高字节。)
A.13
B.14
C.208
D.209
点击查看答案&解析
相关考题
