码迷,mamicode.com
首页 > 编程语言 > 详细

c语言中sprintf的语法

时间:2015-07-16 11:28:29      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

通常是用来按照一定的格式,给字符窜赋值的,
像char buf[100] = {0};
char s1[10] = "hello world";
char s2[10] = "tom";
sprintf(buf,"zifuchuan is %s,he int %s",,s1,s2);
printf("buf = [%s]",buf);//输出是,也就是buf变成"zifuchuan is helloworld ,he int tom"
同样适合一些 int 类型,
int int1= 10
像sprintf(buf,"%s,%s,%d",s1,s2,int1);
这样得出的字符串是"hellowolrd Tom 10"

c语言中sprintf的语法

标签:

原文地址:http://www.cnblogs.com/guosj/p/4650521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!