View Code of Problem 52

#include <stdio.h>


int main()
{
    char ch[100];
    int len ;
    int i;
    gets(ch);
    len=strlen(ch);
    for (i=len-1; i>=0; i--)
    {
        printf("%c",ch[i]);
    }
    printf("\n");
    return 0;
}

Double click to view unformatted code.


Back to problem 52