Answer :
Final answer:
To store the value 99 in the fifth row, third column of an array called numvals, you would use the statement numvals[4][2] = 99. The correct option is (c).
Explanation:
To assign 99 into the fifth row, third column of array numvals:
- Identify the correct index for the fifth row and third column - In programming, arrays start indexing from 0, so the fifth row would be index 4 and the third column would be index 2.
- Write the statement correctly - The correct statement would be numvals[4][2] = 99;
- Understand the array notation - The first number in the square brackets represents the row, and the second number represents the column.