Write an operator overloading program to write S3+=S2.

Answers were Sorted based on User's Feedback



Write an operator overloading program to write S3+=S2...

Answer / som shekhar

class A
{
int id;

public:
A& operator +(const A& a1)
{
A a;
a.id = id + a1.id;
return a;
}
A & operator =(const A& a1)
{
if( this == &a1)
return;
else
{
A a;
a.id = a1.id;
return a;

}
}
};


S3 += S2 internaly will be called as
S3->operator=(s3->operator+(s2));

In this case first + operator will be called and then
assignment operator will be called.

Is This Answer Correct ?    0 Yes 1 No

Write an operator overloading program to write S3+=S2...

Answer / kkk

#include <iostream.h>
class ulhas
{


}

Is This Answer Correct ?    2 Yes 12 No

Post New Answer

More OOPS Interview Questions

write a short note on Overloading of Binary Operator?

2 Answers  


what type of question are asked in thoughtworks pair programming round ?

0 Answers   Thought Works,


Program to check whether a word is the first word of the sentence.

1 Answers  


what is the application of oops?

8 Answers   IBM,


What is overloading in oop?

0 Answers  


Hi All, I am new to programming and want to know how can i write a code to take input of 2 numbers from user and swap it without using a temp variable?

2 Answers   NIIT,


Give an example where we have to specifically use C programming language and C++ programming language cannot be used?

0 Answers   CAT,


define oops concept with example

1 Answers   Cap Gemini,


function overridind means and simple program

2 Answers  


What is difference between data abstraction and encapsulation?

0 Answers  


difference between class and object

10 Answers   Chandan, IBM, Magic Soft,


Can a varargs method be overloaded?

0 Answers  


Categories