Suppose that the definitions of the classes employeeType, fullTimeEmployee, and partTimeEmployee are as given in Example 12-9 of this chapter. Which of the following statements is legal? (15)
a. employeeType tempEmp;
b. fullTimeEmployee newEmp();
c. partTimeEmployee pEmp(“Molly”, “Burton”, 101, 0.0, 0);
Redo Programming Exercise 5 of Chapter 8 using dynamic arrays.