In C:
char string[] =
"multi\n"
"line\n"
"string";
Granted, this is not a real multiline string, but you also have characters in your Zig example that are not part of string content (\\).In C:
char string[] =
"multi\n"
"line\n"
"string";
Granted, this is not a real multiline string, but you also have characters in your Zig example that are not part of string content (\\).