Which of the following operator cannot be overloaded?
Answers were Sorted based on User's Feedback
Answer / soundarya
sizeof
* pointer to member operator
. membership operator
:: scope resolution operator
?: conditional operator
can not be overloaded
using friend function these four operator can not be overloaded
=
()
[]
->
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vidhya
Conditional Operator (?:)
Membership operator (.)
sizeof operator (sizeof())
.-> operator
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between delegation and implemented-in-terms-of?
Are vectors passed by reference c++?
What is a loop? What are different types of loops in c++?
What is srand c++?
Why c++ is called oop?
Which operator cannot be overloaded c++?
Why is c++ called oops?
What is type of 'this' pointer? Explain when it is get created?
what is the basic concept of c++(object oriented programing)
What is the difference between *p++ and (*p)++ ?
What is the difference between stack and heap memory?
What is the basic structure of c++ program?