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.
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.
Source: https://ru.stackoverflow.com/questions/69017/
All Articles
string a="tooo\"uuuu\"oooooo";
- alexlz