Write an operator overloading program to Overload ‘>’
operator so as to find greater among two instances of the
class.
Answer / niraj verma
# include<iosteam.h>
# include<conio.h>
Class Greatest
{
Private:
Int x;
Public:
Void getdata
{
Cout<<” Enter any number”
Cin>>x;
}
Void operator > (greatest obj2)
{
If (x > obj2.x)
{
Cout<<”\n Greatest =”<<obj2.x;
}
Else
{
Cout<<”\n Greatest =”<<x;
}
}
};
Void main ( )
{
Greatest obj1, obj2;
Obj1. getdata ( );
Obj2. getdata ( );
Obj > obj2;
Getch ( );
}
| Is This Answer Correct ? | 4 Yes | 3 No |
what is abstract class ? when is used in real time ? give a exp
In which cases you use override and new base?
What is friend function?
sir i want to know which posting to apply since i am BE CSE.. also want to know what are the rounds there for my interview...Expecting for ur valuable answer....
In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}
Which is faster post increment or pre increment ? and in which cases should u use either - to increase speed?
Please tell me the oops concept with detailed answer
What are the three parts of a simple empty class?
What are the benefits of polymorphism?
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
what is code for call by value and call by reference?
what is diff between .net 1.1 and .net 2.0