多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# C 程序:使用递归来反转字符串 > 原文: [https://beginnersbook.com/2014/06/c-program-to-reverse-a-string-using-recursion/](https://beginnersbook.com/2014/06/c-program-to-reverse-a-string-using-recursion/) 这里我们定义了一个函数`reverse_string`,这个函数递归地调用它自己。 ```c #include <stdio.h> #include <string.h> void reverse_string(char*, int, int); int main() { //This array would hold the string upto 150 char char string_array[150]; printf("Enter any string:"); scanf("%s", &string_array); //Calling our user defined function reverse_string(string_array, 0, strlen(string_array)-1); printf("\nReversed String is: %s",string_array); return 0; } void reverse_string(char *x, int start, int end) { char ch; if (start >= end) return; ch = *(x+start); *(x+start) = *(x+end); *(x+end) = ch; //Function calling itself: Recursion reverse_string(x, ++start, --end); } ``` 输出: ```c Enter any string: chaitanya Reversed String is: aynatiahc ```