Write a Program to check whether the entered number is Palindrome or not. 06:30:00 – by Arslan Akram C++ code #include<iostream> #include<conio.h> using namespace std; int main() { int a,d,n,t=0; cin>>d; a=d; while(d>0 ) { n=d%10; t=t*10; t=t+n; d=d/10; } if ( a==t) cout<<"Number is Palindrome"; else cout<<"Number is not Palindrome"; getch(); } Email ThisBlogThis!Share to XShare to Facebook