Hi, I am learning C++ from Accelerated C++ book. I tried to do the excersive but the coded is not working. I have check a couple of times and could not see what is wrong with the code. Please help. Thank you.
1 2 3 4 5 6 7 8 9 10
#include <iostream>
int main()
{
std::cout
<< "This (\") is a quote, and this (\\) is a backslash."
<<std::endl;
return 0;
}