How to Check Palindrome Number in C

Palindrome Number in C

Here, you will get the program code to check the Palindrome number in C programming language.

Palindrome Number in C

What is Palindrome?

A number that can be read the same, from forward and backward is called a palindrome number.

for Example:- 

121

23532

12321

Algorithm of Palindrome Number 

● Input the number

● Copy number in temporary variable

● Reverse the temporary number

● Compare both original number and reverse number

● If both numbers are same, print message as ” Number is Palindrome

● Else print message as “Number is not Palindrome

Program Code to Check Palindrome Number in C

Output

palindrome number program in c

 

 

 

Check out our other C programming Examples

 

 

 

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top