#include /* The main purpose in this code, is to realize that all it takes to use the # pragma statements is -fopenmp you don't actually need to include */ using namespace std; const int thread_count = 2; void Hello(void) { printf(“Oh well helllooooooo!\n”); } int main(void) { /* with thread_count set, we can set the thread count ourselves */ # pragma omp parallel num_threads(thread_count) Hello(); return 0; }