在一个32位小端(LE)系统中, C语言代码块
{
int a=0x12345678;
short *p =(short *) &a;
printf(“%#04x,%#04x\n”, p[0], p[1]);
}
的输出是[$##$]