以下代码的输出是什么?
std::cout<<"what is the output \\n hello \'world\' world";
Run Code Online (Sandbox Code Playgroud)
我认为输出应该是:
what is the output
hello 'world' world
Run Code Online (Sandbox Code Playgroud)
但实际产量是 the output \n hello 'world' world
为什么\n输出不是新线?