Name the operators that cannot be overloaded in C++?



Name the operators that cannot be overloaded in C++?..

Answer / Gyanendra Singh

In C++, the following operators cannot be overloaded: `sizeof(), .(dot) operator, ::(scope resolution) operator, and typeid() operator`

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What size is allocated to the union variable?

1 Answers  


What is implicit pointer in c++?

1 Answers  


Why do we need runtime polymorphism in c++?

1 Answers  


Describe private, protected and public – the differences and give examples.

1 Answers  


What is the maximum value of a unsigned char a) 255 b) 256 c) 128

1 Answers  


What is the difference between a copy constructor and an overloaded assignment operator?

4 Answers   Belzabar, Citrix, Microsoft, Wipro,


Why c++ is not a pure oop language?

1 Answers  


What are member functions used in c++?

1 Answers  


How would you use the functions randomize() and random()?

1 Answers  


what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); Is the behaviour same ? or different ?

2 Answers  


Can we use this pointer in a class specific, operator-overloading function for new operator?

1 Answers  


Write a program to concatenate two strings.

1 Answers  


Categories