Skip to content
Snippets Groups Projects
helloworld.c 157 B
Newer Older
  • Learn to ignore specific revisions
  • jansik's avatar
    jansik committed
    #include <omp.h>
    #include <stdio.h>
     
    int main(void)
    {
    int tid, nthreads;
    
        printf("Hello world from thread %d of %d\n", tid, nthreads);
    
        return 0;
    }