Palindrome Number Geekboots | C Programming | Jun 06, 2016 #include<stdio.h> int main() { int no, temp, palindrome = 0; printf("Check the given number is Palindrome or not\n"); printf("Enter a Number:\n"); scanf("%d", &no); temp = no; /* Loop the process using "While loop" */ while(no != 0) { palindrome = palindrome * 10; palindrome = palindrome + (no % 10); no = no / 10; } if(temp == palindrome) printf("It's a Palindrome Number!\n"); else printf("It's not a Palindrome Number!\n"); return 0; } Check the given number is Palindrome or notEnter a number:121It's a Palindrome Number!----------------------------------Check the given number is Palindrome or notEnter a number:128It's not a Palindrome Number! Learn more about Palindrome Number c c language c programming c coding for palindrome number palindrome number in c geekboots tutorial geekboots c programming c code for palindrome number