fork download
  1. #include "mpi.h"
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4.  
  5. int main(){
  6.  
  7. MPI_Init(NULL,NULL);
  8. printf("HELLO WORLD");
  9. MPI_Finalize();
  10.  
  11.  
  12. }
Success #stdin #stdout #stderr 0.27s 39256KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: unexpected symbol in "int main"
Execution halted