Skip to content


Multi-line string literals in C/C++

Just a quick note, both are valid ways of defining multi-line string, the 1st way is probably preferred as you can indent your strings

1const char* str1 = "This "
2     "is"
3  "a "
4"sentence";
5 
6const char* str2 = "This \
7is\
8a \
9sentence";
10 
11void main() {
12 
13printf("%s\n", str1);
14printf("%s\n", str2);
15 
16}

Posted in C/C++. Tagged with , , .