#include "stdio.h"
#include <string.h>
#include <cstdlib>
char * revert(char *str)
{
int len = strlen(str);
int i = 0;
char temp;
while(i < len/2) //这里注意,不能取等号
{
temp = str[len-1-i];
str[len-1-i] =str [i];
str[i] =temp;
i++;
}
return str;
}
void main()
{
char str[] = "diaoxinmao";
char *str1 = revert(str);
printf("%s/n",str1);
system("pause");
}
1.百度150道题,今天开刷。1.用C语言实现一个revert函数,它的功能是将输入的字符串在原串上倒序后返回。
最新推荐文章于 2021-05-23 00:15:17 发布