Question
Write Program in C not C++ (Should Run On Linux) Use Shared Memory Create thread 1 to 12 You should be able to adjust the
Write Program in C not C++ (Should Run On Linux)
Use Shared Memory
Create thread 1 to 12
You should be able to adjust the thread range ( Example: Thread 1 to 12). If the thread is odd then it will compute the tid as a factorial. If the thread is even then it will compute the thread as a summation.
Example 1: Enter thread number: 5
***Refer to odd Below***
Example 2: Enter thread number: 6
***Refer to Even Below***
Odd Threads:
-compute tid factorial 1*2*3*4*5
Even Threads:
-compute tid summation 1+2+3+4+5+6
Testing: Threads can print
Final: all output from main
-Main computes sum of the thread values
Display on screen:
- report each value in the thread
-report overall sum in threads
Please run and display working program for Odd and Even Threads.
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