Can we provide one default constructor for our class?
No Answer is Posted For this Question
Be the First to Post Answer
Can we use THIS Pointer in static function – Reason in C++?
Explain the difference between C and C++.
How will you execute a stack using a priority queue? (Push and pop should be in O (1)).
what is a pragma in C++?
Explain the operator overloading feature in C++ ?
Tell me about virtual function
what is friend function in C++?
How does stack look in function calls? When does stack overflow? What can you do to remedy it?
Define an Abstract class in C++?
Can we call C++ OOPS? and Why
What is name mangling/name decoration?
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-; } }