Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started