Palindrome Program in C - Palindrome in C
Learn C - C tutorial - c program to check palindrome number - C examples - C programs
Palindrome number in C
- If we reverse a numbers, the number remains the same it is said to be the palindrome number.
- For example, some palindrome numbers examples are 121, 212, 12321, -454.
- To check a number is a palindrome or not first we reverse it and then compare the number obtained with the original, if both are same then the number is palindrome otherwise not.