c_cpp c中的字符串反转功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp c中的字符串反转功能相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include <string.h>
#include <math.h>
char* reverse(char*);
int main(void) {
char s[] = "abcdefghijklmnopqrstuvwxyz";
printf("%s",reverse(s));
return 0;
}
char* reverse(char* string){
int length = strlen(string);
int limit = (int)floor(length/2);
printf("%d \n",limit);
char temp;
for(int x = 0;x<limit;x++){
temp = string[x];
string[x] = string[length-x-1];
string[length-x-1] = temp;
}
return string;
}
以上是关于c_cpp c中的字符串反转功能的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 在C中反转一个字符串
c_cpp 使用指针算法反转字符串
c_cpp 在不影响特殊字符的情况下反转字符串
c_cpp 反转方程式
c_cpp 反转链表
c_cpp 反转阵列