printf("abc\n\101\t\x41\\101\n");
#include<stdio.h>
int main()
{
return 0;
}
打印“abc“
打印字符'A' 水平制表 打印/101/对应的字符A 打印字符“\”输出“101”
abc
'A''A''A'
问的是什么