Write a program to check whether a given number is palindrome or not. (The program should accept the number from the console to check whether or not it is palindome)
Answers
Answered by
0
Answer:
#include<stdio.h>
int main()
{
int n,r,sum=0,temp;
printf("enter the number=");
scanf("%d",&n);
temp=n;
while(n>0)
{
r=n%10;
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
printf("palindrome number ");
else
printf("not palindrome");
return 0;
}
Similar questions
English,
1 month ago
English,
1 month ago
Physics,
2 months ago
Math,
9 months ago
Social Sciences,
9 months ago