#include <stdio.h>
#include <iostream>
using namespace std;
int isPalindrome(){
int num,r,sum=0,temp;
cout << "Enter a number: ";
cin >> num;
for(temp=num;num!=0;num=num/10){
r=num%10;
sum=sum*10+r;
}
if(temp==sum)
cout << temp << " is a palindrome";
else
cout << temp << " is not a palindrome";
return 0;
}
Is Palindrome
Check if the particular number is Palindrome or not
0 Comments
Add Comment
Log in to add a comment