/* ompgreetings.c -- print a message from each thread */ #include #include #include main() { #pragma omp parallel { int n = omp_get_thread_num(); printf("Greetings from thread %d!\n", n); } printf("Greetings from the main thread!\n"); }