Write a note about the virtual member function?
No Answer is Posted For this Question
Be the First to Post Answer
What is scope resolution operator in c++ with example?
Where Malloc(), Calloc(), and realloc() does get memory?
Write a program to reverse a linked list?
8 Answers Catalytic Software, Satyam,
Can c++ do everything c can?
What is a stack? How it can be implemented?
How are virtual functions implemented in c++?
What is extern 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\"; } };
How do you compile the source code with your compiler?
Explain what are the sizes and ranges of the basic c++ data types?
What is the best way to declare and define global variables?
Explain how overloading takes place in c++?