โ Back to Inheritance
Question 124
Basic Public Inheritance
Basic Public Inheritance
A base class Animal has been provided with a protected string name, a constructor that initializes it, and a function getName() that returns the name. Your task is to implement the Dog constructor. The Dog class publicly inherits from Animal. Use a constructor initialization list to pass the parameter to the Animal base constructor. Do NOT include a main function. Your code will be tested automatically. Expected output: Buddy
Expected Output:
Buddy
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.