首页 > 代码库 > 自己实现strcat函数的功能。(假如字符数组足够大)

自己实现strcat函数的功能。(假如字符数组足够大)

#include <stdio.h>
#include <string.h>
/*
自己实现strcat函数的功能。(假如字符数组足够大)
*/

void main()
{
char str1[100] = "helloworld";
char str2[100] = "world";
int i = 0;
int index = strlen(str1);

for(i = 0; i <= strlen(str2); i++)
{
str1[index + i] = str2[i];
}

printf("%s\n",str1);
}

自己实现strcat函数的功能。(假如字符数组足够大)