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?

  1. Salary
  2. 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:

Using C language: Write a program to read and display the information

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!