Maison > Questions et réponses > le corps du texte
#include <iostream>
using namespace std;
int main()
{
cout << (int)'\1' << endl;
cout << 1 << endl;
cout << (int)'\11' << endl;
cout << 11 << endl;
return 0;
}
请问,(int)'11'这样输出为什么是9啊?
ringa_lee2017-04-17 13:47:01
转义序列
有五种类型的转义序列:简单、八进制、十六进制、Unicode (UTF-8) 和 Unicode (UTF-16)。转义序列可以是以下任一项:
可以参考 字符串和字符文本 (C++)