+ 1
Is there are a way to "escape" escape characters?
Is there a way so I don't have to write a second backslash to print a backslash in a string?
3 Answers
+ 6
using ascii value
cout << char(92);
+ 1
thanks :)
0
"\"
Is there a way so I don't have to write a second backslash to print a backslash in a string?