Computer Science, asked by asajyothimedikondu, 5 months ago


write a
program to enter a number and
display whether it is palindrome or not?​

Answers

Answered by harshitha202034
1

Explanation:

In C program, we will get an input from the user and check whether number is palindrome or not.

Input:

#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;

}

Output:

enter the number = 151

palindrome number

enter the number = 5621

not palindrome number

Similar questions