#include <iostream>
using namespace std;

class Device {
public:
void printType(){
   cout << "Generic Device\n";
}
   // your code here: implement void printType() to print "Generic Device"
};

class Sensor : public Device{
public:
void printSensor(){
   cout << "Sensor Device\n";
}
};

// your code here: define class Sensor inheriting publicly from Device

// implement void printSensor() to print "Sensor Device"

int main() {
   Sensor s;
   s.printType();    // inherited method
   s.printSensor();  // derived method
   return 0;
}
Upvote
Downvote
Loading...

Input

Expected Output

Generic Device Sensor Device