/**************************************************************** example 5 -- driver.cpp feet/inches manager ****************************************************************/ #include <iostream> using namespace std; #include "length.h" void main() { length joey(4,5); cout << "Joey's height was: " << joey << endl; cout << "Then Joey grew 6 inches." << endl; joey.grow(0.5); cout << "Joey's new height was: " << joey << endl; cout << "Then Joey grew an entire foot!" << endl; joey++; cout << "Joey's new height was: " << joey << endl; }