共同体问题,敬请搞手指教!!!!
#include<stdio.h>main(){
union u_type
{ int i;
char ch;
float a;
}temp;
temp.i=266;printf("%d",temp.ch);
}
运行结果为什么会是10????
2011-10-06 17:32
2011-10-06 17:43
2011-10-07 13:41
2011-10-07 14:03
2011-10-10 10:43
2011-10-10 13:26
2011-10-10 13:32