#include<stdio.h>
#include<conio.h>
void main()
{
char a[50],b[50];
int i,j,n,totword=1,totchar=0,totline=1;
clrscr();
printf("\n Please Give The STRING : ");
scanf("%s",a);
for(j=strlen(a)-1;j>=0;j--)
printf("%c",a[j]);
getch();
}
**************************** OUTPUT *****************************************
Please Give The STRING : World
dlroW
******************************************************************************