Employee* boss = NULL; // will set later . . . if (boss != NULL) name = boss->get_name(); // OK
Employee* boss = NULL; string name = boss->get_name(); // NO!! Program will crash