c程序,使用指针作为函数参数,编写函数实现两个字符串连接

2024-11-08 04:45:34
推荐回答(1个)
回答1:

char *mycat(char *a,const char *b){
    char *t;
    if(!a || !b)
        return NULL;
    t=a;
    while(*a) a++;
    while(*a++=*b++);
    return t;
}