Question
C programming Program Challenge ( C how to program 8th edition) 7.32 (Polling) The Internet and the web are enabling more people to network, join
C programming Program Challenge ( C how to program 8th edition)
7.32 (Polling) The Internet and the web are enabling more people to network, join a cause, voice opinions, and so on. The U.S. presidential candidates in 2008 used the Internet intensively to get out their messages and raise money for their campaigns. In this exercise, you'll write a simple polling program that allows users to rate five social-consciousness issues from 1 (least important) to 10 (most important). Pick five causes that are important to you (e.g., political issues, global environmental issues). Use a one-dimensional arrays topics (of type char * ) to store the five causes. To summarize the survey responses, use a 5 - row, 10-column two-dimensional array responses (of type int), each row corresponding to an element in the topics array. When the program runs, it should ask the user to rate each issues. Have your friends and family respond to the survey. Then have the program display a summary of the results, (the program in the book doesn't specify the following BUT you should just have the program ask if there is another survey to be done and continue if there is another survey). The report should include:
a) A tabular report with the five topics down the left side and the 10 ratings across the top, listing in each column the number of ratings received for each topic.
b) To the right of each row, show the average of the rating for that issue.
c) Which issue received the highest point total? Display both the issue and the point total.
d) Which issues received the lowest point total? Display both the issue and the point total.
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