#include <stdio.h> void main() { union { char s[2]; short int i; } a; a.i=0x1234; printf("%x,%x\n",a.s[0],a.s[1]); }
这道题你会答吗?花几分钟告诉大家答案吧!
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题