好比code
char a = \x90; printf("%02x", a);
想輸出爲90,沒想到倒是ffffff90,這個問題害我一個程序總是出錯程序
最終發現只要改成co
unsigned char a = \x90;
問題就解決了,其實仍是正負數的問題printf