View Code of Problem 52

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<math.h>
 void main()
 {
	 char c[100];
	 int i,j;
	 gets(c);
	 for(i=strlen(c);i>0;i--)
	 {
		 printf("%c",c[i-1]);
	 }
	 printf("\n");
	 
 }
	

Double click to view unformatted code.


Back to problem 52