1.

Write a c program to check the wheather a given number is palindrome r not

Answer»

Explanation:

Write AC PROGRAM to FIND whether a number is palindrome or not

C program for palindrome number

#INCLUDE

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)



Discussion

No Comment Found