Question: (c++) Add a copy constructor, overloaded assignment operator and destructor to the class Employee. Write a new driver that creates two objects of type Employee

(c++) Add a copy constructor, overloaded assignment operator and destructor to the class Employee. Write a new driver that creates two objects of type Employee using pointers. The first employee is called Marcy and her SSN is 678-09-1234. The second employee is Michael and his SSN is 123-99-4567. Then the program swaps the value of the two objects using the pointers. Print the result before and after the swap occurs. Add another employee (with new name and ssn) and then define a findssn function which returns employee name given the ssn. Modify the driver to test the findssn function.

My code for the class:

#include using namespace std; using namespace std; class Employee { public: string employee_name; string employee_SSN; }; int main() { int size; cout << "Enter the Number of Employees: "; cin >> size; Employee *empArray = new Employee[size]; for(int i = 0; i < size; ++i) { cout << "Enter Name of Employee " << i+1 << ": "; cin >> empArray[i].employee_name; cout << "Enter the Employees SSN " << i+1 << ": "; cin >> empArray[i].employee_SSN; } for(int i = 0; i < size; ++i) { cout << endl << "Employee" << i+1 << ": "; cout << "Name: " << empArray[i].employee_name << endl; cout << "Social Security Number: " << empArray[i].employee_SSN << endl; } delete[] empArray; return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!