Answered step by step
Verified Expert Solution
Question
1 Approved Answer
./homework421.out 90 81 78 95 79 72 85 Write a multithreaded program that calculates various statistical values for a list of numbers. This program will
./homework421.out 90 81 78 95 79 72 85 Write a multithreaded program that calculates various statistical values for a list of numbers. This program will be passed a series of numbers on the command line and will then create three separate worker threads. One thread will determine the average of the numbers, the second will determine the maximum value, and the third will determine the minimum value. For example, suppose your program is passed the integers 90 81 78 95 79 72 85 The program will report The average value is 82 The minimum value is 72 The maximum value is 95 The variables representing the average, minimum, and maximum values will be stored globally. The worker threads will set these values, and the parent thread will output the values once the workers have exited. (We could obviously expand this program by creating additional threads that determine other statistical values, such as median and standard deviation.) You may write this program in either C or Java. I will provide a solution in C. Submit your program to the dropbox- Main should look like this: int main(int argc. char **args) { So argc is the number of parameters on the command line including program name, for example: 1. $ ./a:out First Second Third 2. Program Name Is: ./a:out 3. Number Of Arguments Passed: 4 4. ----Following Are The Command Line Arguments Passed ---- 5. argv[0]: ./a.out 5. argv[1]: First 7. argv[2]: Second 3. argv[3]: Third You will be running it something like this
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