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

【C语言】字符串操作函数my_strcat

时间:2015-05-22 13:31:05      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

<span style="font-size:18px;">//实现字符串操作函数strcat
#include<stdio.h>
#include<assert.h>
char *my_strcat(char *str1,char const *str2)
{
	char *p=str1;
	assert((str1 != NULL) && (str2 != NULL));
	while(*str1 !='\0')
	{
		str1++;
	}
	while(*str2 !='\0')
	{
		*str1=*str2;
		str1++;
		str2++;
	}
	return p;
}
int main()
{
	char p[]="abc";
	char *q="def";
	my_strcat(p,q);
	printf("%s\n",p);
	return 0;
}</span>

【C语言】字符串操作函数my_strcat

标签:

原文地址:http://blog.csdn.net/sunshine552/article/details/45915931

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