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