//myClassFuncPrototype1.cpp; #include #include using namespace std; // class function outside the class class Base { public: // member function prototype void record(int,string ); }; //declaring function outside the class void Base::record(int n1, string str1) { cout<<"\n eid "<< n1 << "\n name : "<