// File: main2.C // Use the Box class. #include #include "box1.h" main() { Box b ; /* private members cannot be accessed by non-members */ cout << "b.length = " << b.length << "\n" ; }