asked 193k views
2 votes
An operator can be overloaded to define functionality that is drastically different from the original operator.

a. True
b. False

1 Answer

4 votes
A. True

Explanations:

You can redefine or overload the function of most built-in operators in C++. These operators can be overloaded globally or on a class-by-class basis. Overloaded operators are implemented as functions and can be member functions or global functions. An overloaded operator is called an operator function.
answered
User Srijan Karki
by
8.7k points