View Code of Problem 52

#include<stdio.h>
void main(){
 
char a[100];
int i,n;

gets(a);
n=strlen(a);

for(i=n-1;i>=0;i--)
printf("%c",a[i]);




}

Double click to view unformatted code.


Back to problem 52