Which operator can not be overloaded in C++?
The only C operators that can't be are . and ?: (and sizeof , which is technically an operator). C++ adds a few of its own operators, most of which can be overloaded except :: and . * .
| Is This Answer Correct ? | 0 Yes | 0 No |
If there are two catch statements, one for base and one for derived, which should come first?
What do you mean by stack unwinding in c++?
check whether a no is prime or not.
What is the difference between structure and class?
Can you write a function similar to printf()?
Is linux written in c or c++?
What are pointers used for c++?
What is the difference between public, private, protected inheritance?
How do you establish an is-a relationship?
What does override mean in c++?
What do you mean by static variables?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass