以下程序的执行结果是_______。
main( ){ union { int x ; struct sc{ char c1; char c2; } b; } a ; a.x=0x1234; printf(“%x,%x\n”, a.b.c1 , a.b.c2) ; }
Copyright ©