Is assignment operator inherited?
In C++, like other functions, assignment operator function is inherited in derived class. For example, in the following program, base class assignment operator function can be accessed using the derived class object. CPP #include<iostream> using namespace std; class A { public: A & operato