#include <iostream> using namespace std; class Vehicle { public: void printCategory() { cout<<"Generic Vehicle"<<endl; } }; class Car : public Vehicle{ public: void printCar() { cout<<"Car Vehicle"; } }; int main() { Car c; c.printCategory(); c.printCar(); return 0; }
Test Cases
Test Results
Input
Expected Output
Generic Vehicle Car Vehicle