Name the operators that cannot be overloaded.
Define namespace.
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
Discuss about iteration statements in C++ .
What kind of problems does name mangling cause?
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
How can you force the compiler to not generate them?
What does it mean to declare a member function as static in C++?
Can we use THIS Pointer in static function – Reason in C++?
Explain the operator overloading feature in C++ ?
Can we call C++ OOPS? and Why
What are string library functions(syntax).