Write a C++ program which display a massage "Welcome to Class Programming " through member function of a class.

Program Code:
#include  <iostream>
using namespace std;
class Hello // class declaration with class_name Hello
{
public:

void display() // member function of the class Hello
{
cout << "Welcome to Class Programming." ;
cout<< endl;
}
}; 
int main()
{
Hello obj; // Object declaration of class Hello
obj.display(); // function call with object and dot (.) operator
return 0;
}

The program output is tested on www.jdoodle.com
Output:
Welcome to Class Programming.


Thanks
Mukesh Rajput

Mukesh Rajput

Mukesh Rajput

I am a Computer Engineer, a small amount of the programming tips as it’s my hobby, I love to travel and meet people so little about travel, a fashion lover and love to eat food, I am investing a good time to keep the body fit so little about fitness also..

Post A Comment:

0 comments: