Hello, I have not come across this yet.

It is impossible to write a string in a variable string:

string a="tooo"uuuu"oooooo"; 

The compiler understands this as 2 lines with uuuu in the center ...

And how to make it be 1 line?

Thank.

  • 2
    Backslashes before apostrophes string a="tooo\"uuuu\"oooooo"; - alexlz
  • Thank you, help out! - Alerr

1 answer 1

string a = "tooo \" uuuu \ "oooooo";