#include #include #define call #include "mannew.h" animal aa1(123),aa2(456); mankind * mm1, *mm2; void onlyasub(void) { mankind nobody; cout << " Now in routine onlyasub\n"; } main(){ aa1.talk(); cout << "Welcome to C++\n"; call onlyasub(); mm1= new mankind("Chang-3"); mm2= new mankind("Lee-4"); cout << "mm1->pb1=" << mm1->pb1 << "\n"; cout << " (Let mm1 talk)\n"; mm1->talk(); delete mm2; cout << " (and then Let mm1 talk by animal method)\n"; mm1->animal::talk(); return(0); }