What is a pure virtual function?
Why is it represented as = 0...how is the internal
implementation for the same
Answer Posted / vikas
A pure virtual function makes a class abstract.0 is used in
its representation to distinguish it from a normal virtual
function. More at
http://www.cppquestions.com/viewtopic.php?f=26&t=14
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What's the "software peter principleā?
Why c++ is better than c language?
What is name hiding in c++?
What is scope operator in c++?
Can union be self referenced?
What is a storage class used in c++?
What is the difference between cin.read() and cin.getline()?
What are destructors?
How do you declare A pointer to a function which receives nothing and returns nothing
What is a buffer c++?
What can I safely assume about the initial values of variables which are not explicitly initialized?
What is c++ namespace?
What is microsoft c++ redistributable?
Describe about storage allocation and scope of global, extern, static, local and register variables?
What does it mean to declare a member function as virtual?