Computer Science, asked by anainavijay733, 3 months ago

write a program to check whether the given number is palindrome or not with example

Answers

Answered by Anonymous
1

Answer:

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

In this c program, we will get an input from the user and check whether number is palindrome or not.#include<stdio.h>

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()

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(){

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;

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=");

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

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;

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)

Similar questions