#include #include #include int main (int argc, char *argv[]) { int thread_id, num_threads; num_threads = omp_get_max_threads(); printf("%d threads will be used.\n", num_threads); #pragma omp parallel private(thread_id) { thread_id = omp_get_thread_num(); printf("Hello Kitty! from (thread %d)\n", thread_id); } return 0; }