#include int main() { /*Example of work replicated over the threads*/ #pragma omp parallel { printf("Doing some stuff\n"); } return 0; }