发布网友 发布时间: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--;}
}