Write a c program to check the wheather a given number is palindrome r not
Answers
Answered by
1
Explanation:
Write ac program to find whether a number is palindrome or not
C program for palindrome number
#include <stdio.h>
int main()
{
int n, reverse = 0, t;
printf("Enter a number to check if it is a palindrome or not\n");
scanf("%d", &n);
t = n;
while (t != 0)
Similar questions