十六进制: char c = '\x22'; \x是十六进制转义字符的标志

 

char a[3] = {(char)0x32,(char)0x55,(char)(0xff)};

 

 char *a="\x01\x66\xff";

 

相关文章: