Question: include #include int main() { int n = 2; //number of threads omp_set_num_threads(n); #pragma omp parallel { #pragma omp single { printf(A ); #pragma omp
include #include int main() { int n = 2; //number of threads omp_set_num_threads(n); #pragma omp parallel { #pragma omp single { printf("A "); #pragma omp task {printf("race ");} #pragma omp task {printf("car ");} } } } /* gcc task.c -o task -fopenmp ./task 1. What will this code print? 2. Is the order of the words always the same?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
