Question: C++ Given the declarations below, write a nested loop using two for loops to sum all of the elements in the array below. Use row
C++
Given the declarations below, write a nested loop using two for loops to sum all of the elements in the array below. Use row and col for your loop variables.
int scores[3][3] = { {92, 87, 91}, {88, 72, 93}, {100, 94, 97} };
int sum = 0;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
