Write about the stack unwinding?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between method overloading and method overriding in c++?
Implement a 2 dimensional array by one dimentional array
Under what conditions is multiple inheritance not recommended?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
founder of c++
7 Answers Microtek, TCS, TeleCommand,
Explain the properties and principles of oop.
Do you know what are static and dynamic type checking?
Does defining a function inline mean that it wont push and pop things on/off the stack ...like parameters and the return the address??
State the difference between pre and post increment/decrement operations.
What is class syntax c++?
What is diamond problem in c++?
What happens when the extern "c" char func (char*,waste) executes?