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.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter12: Adding Functionality To Your Classes
Section12.2: Providing Class Conversion Capabilities
Problem 6E
icon
Related questions
Question

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

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Data members
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr