What is virtual destructor? What is its use?
No Answer is Posted For this Question
Be the First to Post Answer
When to use Multiple Inheritance?
What do you mean by static variables?
Why is c++ called oops?
What are punctuators in c++?
List different attributes in C++?
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 is rtti in c++?
Can I learn c++ without knowing c?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
What is the advantage of an external iterator.
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
Difference between linked list and array?