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 difference between class and structure in c++?
What is a class template in c++?
Is it possible for the objects to read and write themselves?
What do you mean by ‘void’ return type?
What is the use of function pointer?
How do you write a function that can reverse a linked-list?
What are function prototypes?
What is the difference between #define debug 0 and #undef debug?
What is ifstream c++?
Evaluate !(1&&1||1&&0) a) Error b) False c) True
Can you please explain the difference between using macro and inline functions?
How do you define/declare constants in c++?