[Solved]Q3 Code Function Output Array Created Problem 2 Function Pass Following Parameters Integer Q37081819
Q3. Code the function that will output the array created inProblem 2. The function should pass the followingparameters:
- The integer array multmatrix as a const integer array.
- The row capacity as a const int& value name RCAPACITY.
- The column capacity as a const int& value nameCCAPACITY.
Q4. Code a function, named averageValue, that willcalculate and return the average value for a partially-filleddouble array. The return value should be a double datatype. The function should have parameters:
- The partially-filled double array,named dvalues, as aconst
- The capacity of the array as a const int&
- The number of elements in the array as an integer, namednum_elements. It should be passed by value.
Expert Answer
Answer to Q3. Code the function that will output the array created in Problem 2. The function should pass the following parameters… . . .
OR

