
http://pfacka.binaryparadise.com/articles/guide-to-advanced-programming-in-C.html
Size: a a a
class Box {
public:
// pure virtual function
virtual double getVolume() = 0;
private:
double length; // Length of a box
double breadth; // Breadth of a box
double height; // Height of a box
};