View Code of Problem 52

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

Double click to view unformatted code.


Back to problem 52