#include #include #define NUM_ROW 4 #define NUM_COL 4 // sum_min should return the sum of // the minimum values in each row of the array int sum_min(int size, int array[NUM_ROW][NUM_COL]) { return 42; } // This is a simple main function which could be used // to test your sum_min function. // It will not be marked. // Only your sum_min function will be marked. int main(void) { int test_array[NUM_ROW][NUM_COL] = { {1, 2, 3, 4}, {4, 2, 2, 0}, {9, 9, 9, 9}, {5, 2, 5, 5}}; int result = sum_min(NUM_COL, test_array); printf("%d\n", result); return 0; }