#include using namespace std; class Employee { public: virtual void raiseSalary() { cout<<0<raiseSalary(); // Polymorphic Call: Calls raiseSalary() // according to the actual object, not // according to the type of pointer } int main(){ Employee *emp[]={new Manager(),new Engineer}; globalRaiseSalary(emp,2); return 0; }