标题:copy_string函数没执行 怎么回事 有大佬吗
取消只看楼主
domore
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2019-7-25
结帖率:60%
 问题点数:0 回复次数:1 
copy_string函数没执行 怎么回事 有大佬吗
#include<stdio.h>
int main()
    {
    void copy_string(char *from,char *to);
    char *a="i am a student";
    char *b="you are a student";
    printf("string a:%s\nstring b:%s\n",a,b);
    printf("\ncopy string a to b:\n");
    copy_string(a,b);
    printf("string a:%s\nstring b:%s\n",a,b);
    return 0;
}


void copy_string(char *from,char *to)
    {
    while(*from!='\0')
        {
        *to=*from;
        from++;
        to++;
        }
    *to='\0';
    }
搜索更多相关主题的帖子: 执行 string char from printf 
2019-07-25 04:38
domore
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2019-7-25
得分:0 
回复 3楼 wufuzhang
谢了兄弟
2019-07-27 06:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-496018-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016934 second(s), 9 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved