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 iunknown interface?
Define copy constructor.
Which compiler does turbo c++ use?
Does a derived class inherit or doesn't inherit?
What is the need of a destructor?
What is const in c++?
Write a Program for find and replace a character in a string.
What is the function to call to turn an ascii string into a long?
Does c++ have a hash table?
What are the difference between reference variables and pointers in C++?
Should you pass exceptions by value or by reference?
What is the difference between an external iterator and an internal iterator?