#include #include int main(int argc, char** argv) { #pragma omp parallel { printf("hello %d\n", omp_get_thread_num()); } return 0; }