C语言利用指针编写程序,急!急!急!

发布网友 发布时间:2022-03-31 04:51

我来回答

2个回答

热心网友 时间:2022-03-31 06:21

int test(char* s, char* t)
{
    int i = 0;
    while(s != 0)
    {
        t = s;
        s++;
        t++;
        i++
    }
    s--;
    while(i > 0)
    {
        t = s;
        t++;
        s--;
        i--;
    }
    t = 0;//字符串结尾
    retrun 0;
}

热心网友 时间:2022-03-31 07:39

void fun(char *s,char *t)
{
char *tmp=s;

while(*t++=*s++);

while(tmp!=s) {*t++=*s--;}

}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com