C string with multi lines

第一种方法

char s[] = 
"asdf\
bfda\
asdf";

第二种方法

char s[] = 
"asdf"
"bfda"
"asdf";