What is the output of this following code?
std::cout<<"what is the output \\n hello \'world\' world";
I think the output should be:
what is the output
hello 'world' world
But the actual output is the output \n hello 'world' world
Why isn't \n
output as a new line?