C++中用双引号来表示字符串,但是要是字符串当中也包含引号对时候,就会造成歧义,程序不知道哪个才是表示字符串结束对引号,在编译的时候就会报错。这时候应该使用转义字符 \
\\表示\
\“表示”
#include<bits/stdc++.h> using namespace std; int main() { cout<<"printf(\"Hello, world!\\n\");"<<endl; }
#include<bits/stdc++.h> using namespace std; int main() { cout<<"printf(\"Hello, world!\\n\");"<<endl; }