c语言简单实现连接字符串函数

c语言简单实现连接字符串函数,第1张

不用string.h实现连接字符串函数

#include
char* connect_str(char* des,const char* src);

int main()
{
    char a[20]="hello";
    char b[20]="world";
    puts(connect_str(a,b));
    //connect_str(a,b);puts(a);
    return 0;
}

char * connect_str(char* des,const char* src)
{
    char *a=des;

    while (*des)
    {
        des++;
    }
    while (*src)
    {
        *des++=*src++;
    }
    *des='\0';//字符串的最后记得加上'\0'
    return a;
}
PS D:\_code_C\coin> .\connect_str.exe
helloworld
PS D:\_code_C\coin>

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/3002685.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-27
下一篇 2022-09-27

发表评论

登录后才能评论

评论列表(0条)

保存