// File: main2.C
// Use the Box class.

#include <iostream.h>
#include "box1.h"

main() {
   Box b ;

   /* private members cannot be accessed by non-members */
   cout << "b.length = " << b.length << "\n" ;
   
}
