Asked
fragment OpenMP-programs:#include "omp.h"
#include
void main()
{
int a,b,c;
#pragma omp parallel private
(c,d)
{
int e,f;

}

}
Specify
all the variables that are shared:

  • Shared variables are not exist
  • a,b
  • a,b,c
  • c,d
  • e,f
Для просмотра статистики ответов нужно залогиниться.