Define pointers?
No Answer is Posted For this Question
Be the First to Post Answer
List out some of the OODBMS available?
What is virtual base class?
When should overload new operator on a global basis or a class basis?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
When is the copy constructor called?
How do we implement inheritance in c++?
Write my own zero-argument manipulator that should work same as hex?
Do you know the problem with overriding functions?
what is static function
How do you differentiate between overloading the prefix and postfix increments?
Explain what you mean by a pointer.
What is a pdb file?