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

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

main() {
   Box b ;

   /* private members cannot be accessed by non-members */
   printf("b.length = %f\n", b.length) ;
   
}
