#include <iostream> using namespace std; class Person { public: void sing(); }; class Child : public Person { public: void sing(); }; Person::sing() { cout << "Raindrops keep falling on my head..." << endl; } Child::sing() { cout << "London bridge is falling down..." << endl; } int main() { Child suzie; suzie.sing(); // I want to know how I can call the Person method of sing here! return 0; }
source share