Palindrome Number Program in C

Advertisements

Find Greates Number in C Find HCF of Number in C

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

palindrome number program in c palindrome number program in c

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

palindrome number program in c palindrome number program in c
Find Greates Number in C Find HCF of Number in C

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements