strcat
头文件:
#include <string.h>
函数原型:
char *strcat (char *dest,const char *src)
函数描述:
strcat()会将参数src字符串拷贝到参数dest所指的字符串尾,第一个参数dest要有足够的空间来容纳要拷贝的字符串;
返回值:
返回dest字符串参数的起始地址;
例子:
#include <string.h>
#include <stdio.h>
int main(void)
{
char dest[30] = "Hello";
char src[] = "World";
strcat(dest, src);
printf("dest:[%s]\n", dest);
return 0;
}
得到的结果是:dest:[HelloWorld]参考:http://blog.chinaunix.net/uid-26914516-id-4215338.html
相关阅读
jquery中$.each()与$().each()使用实例
1.在对数组操作的时候$.each()用的比较多 //[{name:"limeng",email:"xfjylimeng"},{name:"hehe",email:"xfjylimeng"}]是数组对
1.事务三大接口 PlatformTransactionManager 事务管理器 TransactionDefinition 事务的一些基础信息,如超时时间、隔离级别、传
android studio 创建项目失败原因Failed to create
1.先把问题贴出来 看看有没有小伙伴一样的大意说的原因就是创建目录失败,就百度查一查 发现 没有配对的问题目录结构都是空的,其实
原文地址为:小白谈memcache和memcached的区别看到下面很多人评论说这个文章没有用,先略去.可以不看.写这个的时候是2011年,转眼3年
CF208 E.Blood Cousins(树上启发式合并)
题目链接:CF208EPolycarpus got hold of a family relationship tree. The tree describes family relationships of n people, nu