most important facilities that C++ adds on to C are except Select one: a. Class b. Acces Specifier c. Function Overloading d. Operator Overloading code example
Example: c++ operator overloading
// money.h -- define the prototype
class Money
{
public:
Money & operator += (const Money &rhs);
}
// money.cpp -- define the implementation
Money& Money :: operator += (const Money &rhs)
{
// Yadda Yadda
return *this;
}