int main(int argc, char *argv[]) { /*Generic example of the look of an OMP program*/ int n=1000; int a[n]; #pragma omp parallel for shared(a,n) for (int i=0; i