Write a program to check whether inputted string is palindrome or not. code example
Example: Write a program to check whether inputted string is palindrome or not.
#include
#include
int main()
{
char s[1000];
int i,n,c=0;
printf("Enter the string : ");
gets(s);
n=strlen(s);
for(i=0;i