CJCoding With Joseph

Inherited Method Without Override

A derived class automatically inherits the public methods of its base.

Base class Printer (already written) has string label() const returning "PRINTER".

Create a derived class LaserPrinter that inherits label() UNCHANGED (do not redefine it) and adds a NEW method string type() const returning "laser".

The program prints the inherited label and the new type separated by one space:
PRINTER laser

Do NOT write a main function.

Expected Output:

PRINTER laser
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.