198k views
0 votes
In addition to redefining existing operators, C++ allows programmers to create their own new operators.

Select one:

True

False

User Jproffitt
by
5.3k points

1 Answer

6 votes

Answer:

False.

Step-by-step explanation:

You can redefine the existing operators by using operator overloading in c++.We can extend the functionality by using the operator keyword.

But in C++ there are no methods to create new operators.

For ex:- There is no ** operator in c++.

2**3 which means 2 raised to the power three and there is no way to create a new operator like this.

User Drbarnard
by
4.6k points