#include #define NUM_ROWS 4 #define MAX_COLS 100 // Return the number of rows that add up to 0 int count_neutral_rows(int size, int array[NUM_ROWS][MAX_COLS]) { return 0; } // This is a simple main function which could be used // to test your count_neutral_rows function. // It will not be marked. // Only your count_neutral_rows function will be marked. int main(void) { int test_array[NUM_ROWS][MAX_COLS] = { {1, 2, 3, -3, 0}, {1, 2, 3, -3, -3}, {1, 4, 3, -3, -2}, {1, -2, 3, -3, -3} }; int result = count_neutral_rows(MAX_COLS, test_array); printf("%d\n", result); return 0; }