Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C++ Programming » Programs » Polymorphism » CPP program to overload binary operator using non member function
Suryateja Pericherla Categories: Polymorphism. No Comments on CPP program to overload binary operator using non member function
2.4
(5)

In this article we will learn to implement a CPP program to overload binary operator using non member function. A C++ program is provided below to overload binary operator.

 

Program is as follows:

#include <iostream>
using namespace std;
class Complex
{
	private:
		float real;
		float imag;
	public:
		Complex(){}
		Complex(float r, float i)
		{
			real = r;
			imag = i;
		}
		void display()
		{
			cout<<real<<"+i"<<imag;
		}
		friend Complex operator +(Complex &, Complex &);
};
Complex operator +(Complex &c1, Complex &c2)
{
	Complex temp;
	temp.real = c1.real + c2.real;
	temp.imag = c1.imag + c2.imag;
	return temp;
}
int main()
{
	Complex c1(3, 4);
	Complex c2(4, 6);
	Complex c3 = c1+c2;
	c3.display();
	return 0;
}

 

Output for the above program is as follows:

7+i10

 

How useful was this post?

Click on a star to rate it!


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory