Check whether the no entered is Palindrome or not


 #include<stdio.h> 

#include<conio.h>

int main()    

{    

int n,r,sum=0,temp;    

printf("enter the number=");    

scanf("%d",&n);    

temp=n;    

while(n>0)    

{    

r=n%10;    

sum=(sum*10)+r;    

n=n/10;    

}    

if(temp==sum)    

printf("palindrome number ");    

else    

printf("not palindrome");   

return 0;  

 


Output:-

enter the number=14341

palindrome number


enter the number=1341

not palindrome

Comments

Popular posts from this blog

Calculate Factorial of a given no with help of Recursion

Find max. and min. element in the integer array