apc-prac-016.c¶
Problem Statement
Write a program to check palindrome number.
Metadata¶
| Property | Detail |
|---|---|
| Author | Amit Dutta (amitdutta4255@gmail.com) |
| License | MIT |
Actions¶
💡 You can print or save this file by opening Raw and using your browser.
Source Code¶
#include <stdio.h>
int main()
{
int num, temp, rev = 0;
printf("Enter the number : ");
scanf("%d", &num);
temp = num;
while (temp > 0)
{
rev = (rev * 10) + (temp % 10);
temp /= 10;
}
if (rev == num)
printf("\nInput %d is a palindrome number.", num);
else
printf("\nInput %d is not a palindrome number.", num);
return 0;
}