#include<stdio.h>void main(){ union{ long b; char c[4]; }s; s.b=0xa0000L; s.c[0]+='A'; printf("%d%c\n",s.c[2],s.c[0]);} 查看完整描述