Question: In programming C In main(), read in two integers, row and col. Use those values to declare two 2D arrays. Next, read in elements to

In programming C
In main(), read in two integers, row and col. Use those values to declare two 2D arrays. Next, read in elements to initialize the declared 2D arrays. Create a function called multiply that takes in four parameters listed below, multiplies each element in array one by the corresponding element in array two, and prints the sum of the values per row. int row . int col . int arr1[row][col] int arr2[row][col] Example Enter row: 2 Enter col: 2 Enter Elements of Array One: 1 2 34 Enter Elements of Array Two: 12 34 Sum of row 0 - 5 // sum = 1 * 1 + 2 + 2 Sum of row 1 25 // sum = 3* 3 + 4 * 4 Rubrics 3 point(s): Correct implementation of main (scanf, function call, and printing.) 3 point(s): Correct implementation of function multiply(). 2 point(s): Correct output. . 2 point(s): No syntax errors
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
