#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");
}
Subscribe to:
Post Comments (Atom)
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;...
-
#include<stdio.h> #include<conio.h> void main() { int n,r,rev=0; printf("Enter a number"); scanf("%d...
-
#include<stdio.h> int main() { char vol; int ascii; printf("enter number"); scanf("%c",&vol); asc...
-
#include <stdio.h> int main() { ...
No comments:
Post a Comment