I want to write a single variable over several lines in C++. more precisely in WINAPI.
Something like: (if \ is the command that does it,)
str=" This is a sample file trying to write multiple lines. \n but it is not same as line break. \
I am defining the same string over several lines. This is different from using backslash n. \
This is not supposed to print multipline in screen or in write file or on windows display. This\
is for ease of programming.";
The problem with this is that I got "|||" whereever I had used \ in my code. I don't want that to appear. What shall I do?