root/ompi/mpi/fortran/use-mpi-f08/tests/print_array.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. print_array

   1 #include <stdio.h>
   2 
   3 void print_array(int * A, int count)
   4 {
   5    int i;
   6    for (i = 0; i < count; i++) {
   7       printf("%d ", A[i]);
   8    }
   9    printf("\n");
  10 }

/* [<][>][^][v][top][bottom][index][help] */