/************************************************ ** Obligatory Hello World example ** ************************************************/ #include #include int main() { //Serial section printf("Getting started...\n\n"); //Parallel Section #pragma omp parallel printf("Hello World from thread %i of %i\n", omp_get_thread_num(), omp_get_num_threads()); //Serial section printf("\nThat's all Folks!\n"); return 0; }