#include<stdio.h> int main() { printf("%c\n",'\32'); return 0; }
显示出来为0且所有十进制数转字符都是0
#include<stdio.h> int main() { printf("\x32"); return 0; }
这样子呢?