Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Modify and run the program shown below in the following way. There is an array of 20 elements defined in the program. The elements of

Modify and run the program shown below in the following way. There is an array of 20 elements defined in the program. The elements of the array are: [20 18 16 14 12 10 8 6 4 2 -20 -18 -16 -14 -12 -10 -8 -6 -4 -2]. Thread 1 adds the first five elements [20, 18, 16, 14, 12], Thread 2 adds the next five elements [10, 8, 6, 4, 2], ..., Thread 4 adds the last five elements [-10 -8 -6 -4 -2]. Finally, the sum of all the 20 elements is printed by the main program. include #include #include #define NUM_THREADS 3 int counter=1;

void *PrintHello(void *threadid) { counter = 2*counter+ (int) threadid; printf(" Thread Id: %d Counter: %d ", threadid, counter); pthread_exit(NULL); } int main(int argc, char *argv[]) { pthread_t threads[NUM_THREADS]; int rc, t; for(t=0;t

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Unity From Zero To Proficiency Beginner A Step By Step Guide To Coding Your First Game

Authors: Patrick Felicia

1st Edition

1091872023, 978-1091872028

More Books

Students also viewed these Programming questions

Question

Match the Python library names below with their descriptions

Answered: 1 week ago