C Program to Check Whether given String or Number is Palindrome
This C Program is to check whether the given string or number is palindrome or not,a palindrome is a string which can be read same in both direction.the program doesn’t use any predefined string functions to check the string for palindrome
#include<stdio.h>
main()
{
char a[80];
char c[80];
int size,i,j;
printf("Enter a String n");
scanf("%s",a);
for(i=0;a[i]!='