hello-world first appliction include using namespace std; class helloworld { private: string s; public: helloworld(String t) { s=t; } void display() { cout<<s; } }; void main() { helloworld h("Hello World!"); h.display(); }