标签:io ar for c r har 函数 print ca
#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);
}
标签:io ar for c r har 函数 print ca
原文地址:http://www.cnblogs.com/zhouyi404/p/3986630.html