#define R "x" const char* s = R"y"; // s is not "x""y" => ill-formed const char* s = R"(y)"; // well-defined, s is "y" Preprocessing (macro, line splicing) will not applied on raw string
0
0
0
44
0