Code:
#include <iostream> using namespace std; class qwerty{ public: qwerty(); void dispalymessage(){ cout<<"Welcome to the world of Programming"<<endl; } }; int main(){ qwerty avinash; avinash.dispalymessage(); }
#include <iostream> using namespace std; class qwerty{ public: qwerty(); void dispalymessage(){ cout<<"Welcome to the world of Programming"<<endl; } }; int main(){ qwerty avinash; avinash.dispalymessage(); }
Comment