Math, asked by sahildas9021, 3 months ago

Write a program to enter a number check the number is palindrome or not.​

Answers

Answered by havellshavells
1

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)

Step-by-step explanation:

please mark as brainlist

Similar questions