Computer Science, asked by cameronboyce, 1 month ago

write a program to find if the number is palprime number or not

Answers

Answered by maansatveer101
3

Answer:

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

#include<stdio.h>

int main()

{

int n,r,sum=0,temp;

printf("enter the number=");

scanf("%d",&n);

temp=n;

while(n>0)

Answered by Amit1210
0

Answer:

These are the program to find if the number is palprime number or not are :

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

}

Explanation:

If this answer will help you then, you mark my answer as Brainliests answer.

Similar questions