Write a function reverse_string (char * string) (Recursive implementation)

Source: Internet
Author: User
#include <stdio.h>void reverse_string (char * string) {int count = 0;char *p = String;char temp;while (*p! = '} ') {Coun t++;//calculates the string length p++;} if (Count > 1) {temp = string[0];//The last word assigned to the first character, the first character is saved, the last word assigned is empty string[0] = string[count-1];string[count-1] = ' + ' ; reverse_string (string+1);//function recursive string[count-1] = temp;}} int main () {char string[10] = "abcdef"; reverse_string (String);p rintf ("%s\n", string); return 0;}


Write a function reverse_string (char * string) (Recursive implementation)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.