Suppose that you have the following declarations:
int times[30][7];
int speed[15][7];
int trees[100][7];
int students[50][7];
a. Write the definition of the function print that can be used to output the contents of these arrays.
b. Write the C++ statements that call the function print to output the contents of the arrays times, speed, trees, and students.