This is an object oriented programming question The code should be in c++ language Create a class Employee having a private data members E_ID, E_Name, E_Age and E_Salary. Now create a public member function void getData() and void ShowData() to take and display an employee data. In the main(), function create an array of Employee class, size of the array should be taken from user at run time and call all the functions defined in the class.
This is an object oriented programming question
The code should be in c++ language
Create a class Employee having a private data members E_ID, E_Name, E_Age and E_Salary. Now create a public member function void getData() and void ShowData() to take and display an employee data.
In the main(), function create an array of Employee class, size of the array should be taken from user at run time and call all the functions defined in the class.
Sample Output:
Enter details of Employee 1
Enter Employee Id: 101
Enter Employee Name: Usman
Enter Employee Age: 29
Enter Employee Salary: 45000
Enter details of Employee 2
Enter Employee Id: 102
Enter Employee Name: Sana
Enter Employee Age: 31
Enter Employee Salary: 51000
Enter details of Employee 3
Enter Employee Id: 103
Enter Employee Name: Tahir
Enter Employee Age: 28
Enter Employee Salary: 47000
Detail of all Employees
101 Usman 29 45000
102 Sana 31 51000
103 Tahir 28 47000
Step by step
Solved in 2 steps