Palindrome Number Program in C
Advertisements
Palindrome Number Program in C
A palindrome number is a number that remains the same when its digits are reversed. Like 16461, for example: we take 121 and reverse it, after revers it is same as original number.
Steps to write program for Pelidrom Number
- Get the number from user.
- Reverse it.
- Compare it with the number entered by the user.
- If both are same then print Given number is palindrome Number
- Else print not palindrome number.
Find palindrome number using for loop
Example
#include<stdio.h>
#include<conio.h>
void main()
{
int a,no,b,temp=0;
clrscr();
printf("Enter any num: ");
scanf("%d",&no);
b=no;
for(;no>0;)
{
a=no%10;
no=no/10;
temp=temp*10+a;
}
if(temp==b)
{
printf("Pelidrom number");
}
else
{
printf("Not Pelidrom number");
}
getch();
}
Output
Find palindrome number using while loop
Example
#include<stdio.h>
#include<conio.h>
void main()
{
int a,no,b,temp=0;
clrscr();
printf("Enter any num: ");
scanf("%d",&no);
b=no;
while(no>0)
{
a=no%10;
no=no/10;
temp=temp*10+a;
}
if(temp==b)
{
printf("Palindrome number");
}
else
{
printf("not Palindrome number");
}
getch();
}
Output
Google Advertisment
