OOP em CPP
class
Clever Cormorant
class
#include<iostream>
using namespace std;
class codeWithRedoy{
public:
string MyName = "Md Fuadul Islam Redoy";
};
int main(){
codeWithRedoy obj;
cout << obj.MyName<<endl;
return 0;
}