poty Profile Answers by poty Nov 15th, 2007 REVERSE A STRING#include<stdio.h>#include<string.h>main(){ char str[50],revstr[50]; int i=0,j=0; printf("Enter the string to be reversed : "); scanf("%s",str); for(i=strlen(str)-1;i>=0;i--) { revstr[j]=str[i]; j++; } revstr[j]='
Write programs for String Reversal & Palindrome check