Question: Write a c++ program that uses the following structure for this problem. struct Emp { char EmpName[25]; int id; float Salary; }; Declare an array

Write a c++ program that uses the following structure for this problem.

struct Emp

{

char EmpName[25];

int id;

float Salary; };

Declare an array called employee[5] of type struct Emp. Use GetData() to read in values for the array and use PrintData()to print out the array elements and use GetAverage() function to calculate the average salary of the employees.

// function prototypes

struct Emp GetData();

void PrintData(struct Emp);

double GetAverage(struct Emp [], int);

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!