Question: (20 points) Given the following pieces of code, implement init 2d() and free 2d() functions that allocates and frees a 2-D array of int pointers

(20 points) Given the following pieces of code, implement init 2d() and free 2d() functions that allocates and frees a 2-D array of int pointers (NOT a 2-D array of int). Make sure to include the function name and its arguments in your code. (20 minutes) int main() { int first_dim = 10; int second_dim = 20; int ***array_2d = NULL; init_2d(&array_2d, first_dim, second_dim); // Do some stuff here with the 2-D array free_2d (array_2d, first_dim, second_dim); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
