字符串串接有助于将一个很长的字符串分割成多行一遍阅读
1:
#define PRG_NAME "EasyLine"
char msg[]="The installation of"PRG_NAME
"is now complete.";
2:利用每行尾端的反斜线,
char info[]=
"This is a string literal broken up into\
several source code lines.\nNow one more line:\n\
that's enough,the string ends herr.";
这个字符串会延伸到下一行的开始位置:左边界的任何空格(比如前面例子的several前面就有一个空格)都是属于字符串内容的一部分。而且,这里所定义的字符串字面值包含两个换行字符:一个在Now的前面,一个在that's的前面
|