Question: Question 3 What will be a possible output for the following program? #include #include #include using namespace std; mutex m 1 ; mutex m 2

Question 3
What will be a possible output for the following program?
#include
#include
#include
using namespace std;
mutex m1;
mutex m2;
void funcA(){
for (int i=0; i <3; i++)
cout << i;
}
int main (){
thread th1(funcA);
thread th2(funcA);
th1.join();
th2.join();
}

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!