/*
* Concatenated string literals are separated with a single space.
*/
//indent input
char concat[] = "line 1\n"
"line2" "has" "several""words\n";
//indent end
//indent run -di0
char concat[] = "line 1\n"
"line2" "has" "several" "words\n";
//indent end