In C# we can define a complicated string with @:
string str = @"This is the first line.\r\nThis is still the first line";
how about in C++? if we have something like this we don't need to use converting sign '\' for all the special characters.
In C# we can define a complicated string with @:
string str = @"This is the first line.\r\nThis is still the first line";
how about in C++? if we have something like this we don't need to use converting sign '\' for all the special characters.