Question
c++ code. PLEASE HELP!! Write a program that reads in worker data from a file, store that data in an array of workers, and then
c++ code. PLEASE HELP!!
Write a program that reads in worker data from a file, store that data in an array of workers, and then iterates over the array and prints out each worker's data. In this program, you will have to read in an input file containing worker data and store that data in a struct. Thus, you will have to define a Worker struct to account for each bit of data for each worker. Then, you will have to print out the data for each worker. output: This is what should be in the text file: Kyle Abraham President 250000 Responsible for ensuring the company runs smoothly! Patricia Joyce Marketing Advisor 75000 Responsible for keeping the company's market interested! Wanda Hills Assistant Manager 125000 Responsible for ensuring the Ground Worker's and Customer's are happy!
$ g++ labProg.cpp $ ./a.out workerInfo.txt Name: Kyle Abraham Job Title: President Salary: $250000.00 Responsibility: Responsible for ensuring the company runs smooth ly! Name: Patricia Joyce Job Title: Marketing Advisor Salary: $75000.00 Responsibility: Responsible for keeping the company's market int erested! Name: Wanda Hills Job Title: Assistant Manager Salary: $125000.00 Responsibility: Responsible for ensuring the Ground Workers and Customers are happy
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