next up previous contents
Next: Exercise - Getting Started Up: Getting started Previous: Finding out about the   Contents

A simple program

Again hello (hello2.c);
#include "mpi.h"
#include <stdio.h>

int main( argc, argv )
int argc;
char **argv;
{
int rank, size;
MPI_Init( &argc, &argv );
MPI_Comm_rank( MPI_COMM_WORLD, &rank );
MPI_Comm_size( MPI_COMM_WORLD, &size );
printf( "Hello world! I'm %d of %d\n", 
        rank, size );
MPI_Finalize();
return 0;
}



Cem Ozdogan 2006-12-27