Consider the following program:
#include #include class B { public: int n; B() : n(0) {} B(int m) : n(m) {} }; clas