Sep 22, 2013 at 12:58am
'\' is the escape character; if you want to print out '\'s, you need to put two in a row:
std::cout<<"Here is a single backslash: \\";
Sep 22, 2013 at 1:26am
Wow thank you so much. the code looks a little funky, but it display how I wanted.