Quantcast
Viewing all articles
Browse latest Browse all 9

C language: Program for checking if the given number is a palindrome or not

This is a program which checks for if the given number is a palindrome or not in language C this is one of the first programs that i learned in the school  so here’s the code for it

#include <stdio.h>

int main()
{
 int n, reverse = 0, temp;

 printf("Enter a number to check if it is a palindrome or not\n");
 scanf("%d",&n);

 temp = n;

 while( temp != 0 )
 {
 reverse = reverse * 10;
 reverse = reverse + temp%10;
 temp = temp/10;
 }

 if ( n == reverse )
 printf("%d is a palindrome number.\n", n);
 else
 printf("%d is not a palindrome number.\n", n);

 return 0;
}


Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 9

Trending Articles