Use the sales array to answer. The array was declared using the int sales[2][5] = {{10000, 12000,

Question:

Use the sales array to answer. The array was declared using the int sales[2][5] = {{10000, 12000, 900, 500, 20000}, {350, 600, 700, 800, 100}}; statement. 


Which of the following verifies that the array subscripts stored in the row and col variables are valid for the sales array? 

a. if (sales[row][col] >= 0 && sales[row][col] < 5) 

b. if (sales[row][col] >= 0 && sales[row][col] <= 5) 

c. if (row >= 0 && row < 3 && col >= 0 && col < 6) 

d. if (row >= 0 && row <= 1 && col >= 0 && col <= 4)

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: