Sunday 26 January 2014

check if it is a palindrome or not

#include<stdio.h>
int main()
{

// 1 get the number fron user
// 2 reverse
// 3 compare it with the number enter by use
// 4 if both are sane then print palindrom number
// 5 Else print not a palindrome number


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 a not prlindrom number\n",n);
return 0;
}

No comments:

Post a Comment