#include <stdio.h>

int main(int argc,char* argv[])
{
	int j;
	double x=3.14;
	
	#pragma omp parallel for private(x)
	for(j=0;j<10;j++)
	{
		x=1.0/(j+0.000001);
		printf("x = %0.3lf\n",x);
	}
	printf("*** x = %0.3lf\n",x);
}
// Workstations
// ============
// gcc -fopenmp blah.c

// Arcturus
// ========
// cc -O3 -xopenmp blah.c

