#include <stdio.h>
void _strcat(char *, const char *);

int main(void)
{
    char source[] ="View";
    char dest[] ="GoldenGolbal";
    _strcat(dest,source);
    printf("%s\n",dest);
}
//append string from source to dest
void _strcat(char * dest, const char * source)
{
    int j,i=0;
    
    while(dest[i] != '\0')
    {
        i++;
        j = i;
    }

    i = 0;
    while(source[i] != '\0')
    {
        dest[j+i] =source[i];
        i++;
    }
}

刚刚学c,看到别人写的这个代码,稍稍修改了一下贴出来分享

posted on 2015-04-15 09:56  你不知道的浪漫  阅读(1046)  评论(2编辑  收藏  举报