பின்வரும் நிரலில் அடிப்படையில், உள்ள வினாக்களுக்கு விடையளி
#include < iostream >
using namespace std;
class Point {
private:
int x, y;
public:
point(int x1,int y1)
{
x=x1;y=y1;
}
void operator+(Point &pt3);
void show()
{ cout << "x=" << x << "y=" << y; }
void Point::operator+(point &pt3)
{
x+=pt3.x;
y+=pt3.y;
}
int main()
{
Point pt1(3,2),pt2(5,4);
pt1+pt2;
pt1.show();
return 0;
}
pt1+pt2;
Point pt1(3,2),pt2(5,4);
pt 1.showt();
return ();