Untitled

 avatar
unknown
plain_text
10 months ago
236 B
3
Indexable
#include <iostream>
using namespace std;

class B{
    B(int a){
        cout<< "How are you "<<a;
    }
};
class D:public B{
    D(int b){
        cout << "Derived class"<<b;
    }
}

int main(){




    return 0;
}
Editor is loading...
Leave a Comment