C program to check whether the given number is palindrome or not
#include<stdio.h> #include<conio.h> void main() { int n,a,b=0,num; clrscr();//to clear the screen printf("Enter any number:"); scanf("%d",&n); num=n;
while(n!=0) { a=n%10; b=a+(b*10); n=n/10; } if(num==b) printf(" The given number is palindrome"); else printf(" The given number is not palindrome"); getch();//to clear the screen; }
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.