//ab.cpp -- @CopyLeft by tsaiwn@csie.nctu.edu.tw // g++ -Wno-deprecated -ab.cpp //test constructor/destructor and Inheritance //Note that void test( ) is friend of class B #include // so that can be run under TC++3.0 //using namespace std; class A { protected: int data; public: A( ) { cout << "A "; data = 38;} A(int k) { cout << "Aint "<