Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Marketing The New Profit Frontier

Authors: Ed Burnett

1st Edition

0964535629, 978-0964535626

More Books

Students also viewed these Databases questions

Question

10-3 How has e-commerce transformed marketing?

Answered: 1 week ago

Question

What does stickiest refer to in regard to social media

Answered: 1 week ago

Question

Question How are IRAs treated for state tax law purposes?

Answered: 1 week ago