A silly example...
int greeting::language = 0;
void greeting::greet_me()
cout << "Guten Morgen, Martin!" << endl;
cout << "Bonjour, Martin!" << endl;
cout << "Good morning, Martin" << endl;
In this way we can globally modify the behavior of all instances of class “greeting”.