Question: Using C language: Write a program to read and display the information employees in a group. Then edit the details of the employee and redisplay
Using C language:
Write a program to read and display the information employees in a group. Then edit the details of the employee and redisplay the entire information. Here is the list of 3 employees in a group:
| Employee ID | Employee name | Experience | Salary | Department |
| 5561 | Richard | 1 | 68000 | Product Development |
| 5562 | Callum | 2 | 100000 | Product Development |
| 5563 | Elon | 4 | 150000 | Product Development |
Your C language Code should generate the following output for each of the employees(detail see image at the bottom). Example:
********DETAILS OF Employee 1*******
Employee ID = 5561
Employee Name = Richard
Salary = 68000
Experience = 1
Department = Product Development
Then modify any employees information by asking questions below:
Do you want to modify any students data(yes or no)
(Input: Yes)
Enter students ID:
(Input: 5561)
Which parameter do you like to update?
- Salary
- Department
(Input: 2)
New department is :
(Input: Data Science)
********DETAILS OF Employee 1*******
Employee ID = 5561
Employee Name = Richard
Salary = 200000
Experience = 1
Department = Data Science
Your C code should have the output shown in image below:

Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
