Select Answer
No -- width is private; only member functions can access it
Yes -- printWidth is declared as a friend inside Box, granting it access to private members even though it is not a member function
Yes -- but only if printWidth is defined inside the class body
No -- friend only works with protected members