#include <stdio.h> void put_data_( int *ijmax, int *array ){ int ij; for( ij = 0; ij < *ijmax; ij++ ){ printf( "ij = %d\n", ij ); array[ij] = ij; } }