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
what is data abstraction in C++?
How can we access protected and private members of a class?
Define a constructor - what it is and how it might be called (2 methods)?
What is the average salary of a c++ programmer?
What are exceptions c++?
What is iterator in c++?
Do class declarations end with a semicolon? Do class method definitions?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
What is a class definition?
What is the function of I/O library in C++ ?
How does com provide language transparency?
Why ctype h is used in c++?
What is ios :: in in c++?
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
What is the output of the following program? Why?