{
unsigned int byte = 0x1234;
unsigned int high;
unsigned int low ;
high = (byte>>8)&0xff;
low = byte & 0xff;
printf("%x,%x",high,low);
return 0;
}
首页 >
{
unsigned int byte = 0x1234;
unsigned int high;
unsigned int low ;
high = (byte>>8)&0xff;
low = byte & 0xff;
printf("%x,%x",high,low);
return 0;
}