Question: Need this C-- code (named add.cm) to be compiled and Run on Java /* Add 10 to a variable in each of two processes. The

Need this C-- code (named add.cm) to be compiled and Run on Java

/* Add 10 to a variable in each of two processes. The answer can be between 2 and 20. Local variable enables bad scenario with source-level interleaving. */ int sum = 0;

void add10() { int i; int local; for (i = 1; i <= 10;i++) { local = sum; sum = local + 1; } }

void main() { cobegin { add10(); add10(); } cout << "Sum = " << sum << endl; }

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!