What are shallow and deep copy?
No Answer is Posted For this Question
Be the First to Post Answer
How do you allocate and deallocate memory in C++?
What is class definition in c++ ?
What is scope operator in c++?
What is a binary file? List the merits and demerits of the binary file usagein C++.
What is the purpose of templates in c++?
What is the difference between Pointer and a Reference? When you would use them?
Const char *p , char const *p What is the difference between the above two?
What is a catch statement?
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\"; } };
What are smart pointer? Whats its use?
What information can an exception contain?
Explain the need for "Virtual Destructor"?