Lesson 62Inheritance & Polymorphism

Base & Derived Classes

Learn about base & derived classes in C++ programming!

main.cpp
#include <iostream>
using namespace std;

int main() {
    // Your code here
    cout << "Let's learn C++!" << endl;
    return 0;
}