need a function outside of main to fill a 2-D array with random numbers in the range
of 0 to 99, for example: rand () % 100. the prototype declaration is:
void fill (int *rows, int *cols, int ***array); where all three were declared in main and the values for rows and cols were read in by the user in another function.
of 0 to 99, for example: rand () % 100. the prototype declaration is:
void fill (int *rows, int *cols, int ***array); where all three were declared in main and the values for rows and cols were read in by the user in another function.