Question: I need to have two arrays to run the program; one for getting the names of the candidates and another to get the votes. My

 I need to have two arrays to run the program; one

for getting the names of the candidates and another to get the

I need to have two arrays to run the program; one for getting the names of the candidates and another to get the votes. My problem is I have used fgets in order to get my string of characters from user input, but how do I take the name and the number of votes provided in the string and put them into separate arrays? Right now with my program if the user were to input "Miller 3000" it would store the entire string into "lastName[CANDIDATE_NUMBER]", but I want to have it so that only Miller would get stored in "lastName[CANDIDATE_NUMBER]" and the number of votes, 3000, would get stored into my "votes" array.

NOTE: The images can be enlarged and viewed more easily if you right click and select "Open image in new tab"

Write a program that allows the user to enter the last names of five candidates in a local election and the number of votes received by each candidate in two arrays The program should then output each candidate's name, the number of votes received, and the percentage of the total votes received by the candidate. Your program should also output the winner of the election. For example Enter candidate's name and the votes received by the candidate. Johnson 5000 Miller 4000 Duffy 6000 Robinson 2500 Asthony 1800 Candidate tes Received % of Total Votes Johnson Miller Duffy Robinson Asthony 5000 4000 6000 2500 1800 25.91 20.73 31.09 12.95 9.33 Total Votes: 19300 The Winner of the Election is: Duffy 8 #include 9#include 1#include 11 int main(void) 12 13 const int CANDIDATE NUMBER -5; // Max number of candidates for this program is 5 14 char lastName [CANDIDATE-NUMBER] [60]; //Max number of characters for the program is 68. This array determines the exact candidate specified (.e lastName[)) 15 int i; // i will be used to iterate throughout the array 16 int votes[4] 17 18 19 printf ("Enter candidate' s name and the votes received by the candidate.n") 20 21 for (i = 0; i = break; 28 printf ("Candidate Votes Recieved % of Total Votesin--.n) 29 30 31 32 34 36 return 37

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!