Write about the stack unwinding?
No Answer is Posted For this Question
Be the First to Post Answer
What is c++ good for?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
What's the "software peter principle”?
What is the difference between map and hashmap in c++?
Define macro.
What is the Diffrence between a "assignment operator" and a "copy constructor"?
What are the advantages of c++ over c?
How const functions will be treated by compiler?
how to swap two strings without using any third variable ?
what is pre-processor in C++?
What is the role of copy constructor in copying of thrown objects?
How to declare a function pointer?