#include <stdio.h>

class Vehicle {
public:
  Vehicle() 
    { printf("This is the Vehicle constructor\n"); }
  //... other stuff
};

class Car : public Vehicle {
public:
  Car()
    { printf("This is the Car constructor\n"); }
  //... other stuff
};

main()
{
  Car car;
  //... do stuff
}

