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 |
Explain the uses oof nested class?
Can we define function inside main in c++?
What is microsoft c++ redistributable?
Can we generate a C++ source code from the binary file?
What are c++ stream classes?
what is object?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
sir i want to study the c++ course but ino what is the qualification and the study methode please reply more details in c++
Is python better than c++?
What is encapsulation in c++ with example?
Explain the auto storage classes in c++.
List the issue that the auto_ptr object handles?