helloworld in openmp

PHOTO EMBED

Wed Jan 21 2026 00:02:40 GMT+0000 (Coordinated Universal Time)

Saved by @luisjdominguezp

#include <stdio.h>
#include <omp.h>

int main(int argc, char** argv){
    #pragma omp parallel
    {
        printf("Hello from process: %d\n", omp_get_thread_num());
    }
    return 0;
}
content_copyCOPY

https://curc.readthedocs.io/en/latest/programming/OpenMP-C.html