edited by
4,654 views

3 Answers

1 votes
1 votes

List of operators that cannot be overloaded

1. Scope resolution operator   (::)   
2. Pointer-to-member Operator (.*)   
3. Member Access or Dot operator  (.)   
4. Ternary or Conditional Operator  (?:)
5. Object size Operator   (sizeof)
6. Object type Operator   (typeid)

option D

Answer:

Related questions

1 votes
1 votes
1 answer
1
5 votes
5 votes
4 answers
2
sh!va asked May 7, 2017
4,518 views
Which of the following is associated with objects?StateBehaviorIdentityAll of the above
7 votes
7 votes
6 answers
4
kauray asked May 7, 2017
6,973 views
What is the output of the C++ program? #include <iostream using namespace std; void square(int *x){ *x = (*x)++ * (*x); } void square(int *x, int *y){ *x = (*x) * (*y); ...