printf可以自动把两个字符串合并成一个字符串,并且可以合并多个

程序1:

#include<stdio.h>

int main()

{

printf("hello  ""world\n");

return 0;

}

程序2:

#include<stdio.h>

int main()

{

printf("he""llo "  "wor""ld\n");

return 0;

}

结果:

hello  world

请按任意键继续. . .