Question: Write a program that stores the following data about a soccer player in a structure: Players Name Players Number Points Scored by a Player Your

Write a program that stores the following data about a soccer player in a structure:

Players Name

Players Number

Points Scored by a Player

Your program should keep an array of 3 of these structures. Each array element stores data for a different player on the team. The data will be read from a file into an array of structs and then output. The program should then calculate and display the total points earned by the team. Finally, output the name of the player who has earned the most points and his points. Please follow the directions listed below regarding the functions you need. The array should be manipulated using a pointer (the array name) and not using subscript notation.

Your program should have the following functions:

getData will read the data from inFile.txt and store the data in the array of structs.

inFile.txt will look like this:

John Smith

123 3

Paul Jones

111 7

Ed Small

-90 7

Joe Shmoe

333 5

Tom Jones

444 -9

printData will output the data to file outFile.txt in a table using the following format

Name Number Points

XXXXX XXX XX

calcTeamPoints will calculate and output to the file the total team points

findHigh will determine and output to the file the name of the player with the highest points and the highest points. The signature for this function must look like:

void showHighest(Player *p, int size)

Input Validation Do not accept negative values for players numbers or points scored. This data will not be added to the array. Invalid messages need to be output to the file with the name of the player and the invalid data (players number or points scored).

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!