vote up 1 vote down star

How do you output \ symbol using cout?

flag

5 Answers

vote up 12 vote down check

Use two backslashes \\

link|flag
vote up 14 vote down

The '\' character is an escape character in C and C++. You can output a literal '\' by escaping it with itself:

   cout << "This is a backslash: \\";
link|flag
vote up 11 vote down

In addition to all the correct answers, see this for further escaped characters

\a  Bell (beep)
\b  Backspace
\f  Formfeed
\n  Newline
\r  Return
\t  Tab
\\  Backslash
\'  Single quote
\"  Double quote
\xdd    Hexadecimal representation
\ddd    Octal representation
\?  Question mark ('?')
link|flag
There's also correct answers below yours. :) – sbi Oct 30 at 19:17
You missed a few. Also what happens with '\m' (ie a non special character). – Martin York Oct 30 at 19:19
@Sbi: Right :) 15 – Tom Oct 30 at 21:14
vote up 3 vote down

Maybe

cout << "\\";
link|flag
vote up 3 vote down
std::cout << '\\';
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.