fork download
  1. #include <mpi.h>
  2. #include <stdio.h>
  3.  
  4. int main( int argc, char *argv[] )
  5. {
  6. MPI_Init( &argc, &argv );
  7. printf( "Hello World\n" );
  8. MPI_Finalize();
  9. return 0;
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:1:10: fatal error: 'mpi.h' file not found
#include <mpi.h>
         ^~~~~~~
1 error generated.
stdout
Standard output is empty