/* String Palindrome - Program to check whether a given string is a palindrome or not - May 2013*/ #include #include #include #include void main() { char str[50] ; int i, j, length, flag ; clrscr() ; printf("Enter a string: ") ; gets(str) ; length=strlen(str) ; flag=1 ; /* assuming that the string is a palindrome */ i=0 ; j=length-1 ; while(i