找考题网-背景图
单项选择题

以下程序的输出结果是()     
#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