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 |
What size is allocated to the union variable?
What is implicit pointer in c++?
Why do we need runtime polymorphism in c++?
Describe private, protected and public – the differences and give examples.
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
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?
What are member functions used in c++?
How would you use the functions randomize() and random()?
what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); Is the behaviour same ? or different ?
Can we use this pointer in a class specific, operator-overloading function for new operator?
Write a program to concatenate two strings.