dotfiles/.config/Code/User/History/-2b6dc0c0/3xem.cpp

30 lines
241 B
C++
Raw Normal View History

2024-06-16 18:53:25 +05:00
/*
Rafay Ahmad
23I-2526
*/
#include <iostream>
using namespace std;
class A{
public:
A(){
cout<<"A cstr\n";
}
};
class B{
public:
B(){
cout<<"B cstr\n";
}
};
class C{
};
int main(){
return 0;
}