Answer to Question 22C-5

  struct Employee
  {
    const char* name;
    double      salary;
    const char* office;

    Employee(const char* nm, double sal, const char* ofc)
    {
      name   = name;
      salary = sal;
      office = ofc;
    }
  };

  Philp = new Employee("Phil", 80000, "232D");