centos中c环境字符串拼接

前端之家收集整理的这篇文章主要介绍了centos中c环境字符串拼接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include <stdio.h>
#include <string.h>

int main ()
{
char str[80];
strcpy (str,"these ");
strcat (str,"strings ");
strcat (str,"are ");
strcat (str,"concatenated.");
puts (str);
return0;
} //以上是字符串拼接的例子,总体来说还是没有sprintf好用
原文链接:https://www.f2er.com/centos/377640.html

猜你在找的CentOS相关文章