fork download
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<omp.h>
  4. int main()
  5. {
  6. #pragma omp parallel
  7. {
  8. printf("Hello world!\n");
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
Hello world!