码迷,mamicode.com
首页 > 其他好文 > 详细

reverse c

时间:2018-07-02 00:05:30      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:std   pre   int   div   can   lib   ase   har   \n   

#include <stdio.h>
#include <stdlib.h>

char String[30];
int Length;

void Reverse(int N)
{
    if (N < Length)
    {
     Reverse(N + 1);
     printf("%c", String[N]);
    }
}

void main()
{
    printf("Please enter string : ");
    scanf("%s", &String);

    Length = strlen(String);
    printf("The reverse string : ");
    Reverse(0);
    printf("\n");
}

  

reverse c

标签:std   pre   int   div   can   lib   ase   har   \n   

原文地址:https://www.cnblogs.com/lifelessfaultless/p/9251790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!