2017-02-21 76 views

回答

3

不知道你所說的「第1和第3個字節」的意思,但假設你的意思最重要的字節和第三最重要的字節:

unsigned int a = 0x12dc4430; 
unsigned char b = 0xcb; 
a = (a & 0x00ff00ff) | (b << 8) | (b << 24); 
printf("%x\n", a); 

Pr ints cbdccb30

相關問題