printf("%d\n", '\033'); printf("%c\n", '\033'); //为什么这可以使用%c?'\033'是字符? printf("%c\n", 27); //为什么这也可以用%c?
printf("%d",'\033');