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
Get step-by-step solutions from verified subject matter experts
