View Code of Problem 52

#include<stdio.h>
#include<string.h>
void main()
{
int i,n;
char str[100];
gets(str);
n=strlen(str);
i=n;
while(i--)
printf("%c",str[i]);

}

Double click to view unformatted code.


Back to problem 52