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 private:

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