// Pantea Aria // static 2D arrays: similar to a Matrix // Write a program that declares the following 2D array of integers // { // {1, 0, -1}, // {2, -2, 4}, // {0, 5, 3} // } // and prints the sum of all elements with a function. // your turn: sum of all rows // your turn: sum of all columns #include #define ROWS 3 #define COLS 3 int main(void) { return 0; }