Monday, March 9, 2020

Write a program to check the given number is palindrome or not.

#include<stdio.h>
#include<conio.h>
void main()
{
int n,sum=0,temp,d;
printf("\n Enter a number ");
scanf("%d",&n);
temp=n;
while(n!=0)
{
d=n%10;
sum=sum*10+d;
n=n/10;
}
if(temp==sum)
 printf("\n Palindrome");
else
 printf("\n Not Palindrome");
}

No comments:

Post a Comment

pattern

55555 4444 333 22 1 #include <stdio.h> int main() {     int i,j;     for(i=5; i>=1; i--)     {         for(j=1; j<=i;...