Untitled
Anonymous
plain_text
07/11/2024 11:21 AM
316 B
19
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