好比code
char a = \x90; printf("%02x", a);
想输出为90,没想到倒是ffffff90,这个问题害我一个程序总是出错程序
最终发现只要改成co
unsigned char a = \x90;
问题就解决了,其实仍是正负数的问题printf