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
请按任意键继续. . .
本文出自 “岩枭” 博客,请务必保留此出处http://yaoyaolx.blog.51cto.com/10732111/1728068