write program for palindrome

Answer Posted / purnachandra sahoo

/*Program to check whether a number is palindrom or not*/
#include<iostream.h>
#include<conio.h>
int pall(int);
void main()
{
int n,res;
clrscr();
cout<<"Enter the number :";
cin>>n;
res=pall(n);
cout<<" which is:"<<res;
getch();
}
int pall(int x)
{
int p,a,sum=0;
p=x;
while(x!=0)
{
a=x%10;
sum=sum*10+a;
x=x/10;
}
if(sum==p)
{
cout<<"\nThe enterd number is palindrom" ;
return(sum);
}
else
{
cout<<"\nThe entered number is not palindrom" ;
return 0;
}
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is data abstraction in C++?

826


How can we access protected and private members of a class?

814


Define a constructor - what it is and how it might be called (2 methods)?

800


What is the average salary of a c++ programmer?

760


What are exceptions c++?

771


What is iterator in c++?

831


Do class declarations end with a semicolon? Do class method definitions?

845


Can the creation of operator** is allowed to perform the to-the-power-of operations?

760


What is a class definition?

798


What is the function of I/O library in C++ ?

860


How does com provide language transparency?

772


Why ctype h is used in c++?

699


What is ios :: in in c++?

812


A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

3445


What is the output of the following program? Why?

808