Question: Make a C++ program A car dealer has 10 salespersons. Each salesperson keeps track of the number of cars sold each month and reports it

Make a C++ program

A car dealer has 10 salespersons. Each salesperson keeps track of the number of cars sold each month and reports it to the management at the end of the month. The management keeps the data in a file and assigns a number, 1 to 10, to each salesperson. The following statement declares an array, cars, of 10 components of type int to store the number of cars sold by each salesperson: int cars[10]; Write the code to store the number of cars sold by each salesperson in the array cars, output the total numbers of cars sold at the end of each month, and output the Salesperson number selling the maximum number of cars

Implement a program where you store the names of the sellers and the number of vehicles sold. Store the names of people in a two-dimensional array of characters, and the number of vehicles in a one-dimensional array of type integer. Print the person's name and the least number of vehicles sold at the end of the month. Implement functions with parameters in your implementation

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!