1 2 3 4 5 6 7 8 9
#include "cow.h" int main () { Cow cow ("foo", "bar", 7); cow.age = -4; // some casting happens here cow.moo (); }