/* test of MPI */ #include "mpi.h" #include int main(int argc, char **argv) { MPI_Init( &argc, & argv ); printf("Hello World !\n"); MPI_Finalize(); }