单选题 下面程序的输出结果为______。
main()
{union{unsigned int t;
unsigned char c;
}u;
u.c="a";
printf("%c/n",u.t);
}
【正确答案】 B
【答案解析】