How can a subclass call a method of the superclass with the same method name of the subclass?
c++
Solution
suzie.Person::sing();
Problem
``` #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's method of sing here! return 0; } ```