With the following declaration: int [ , ] points = {{300, 100, 200, 400, 600}, {550, 700,
Question:
With the following declaration:
int [ , ] points = {{300, 100, 200, 400, 600},
{550, 700, 900, 800, 100}};
The statement points[1, 3] = points[1, 3] + 10; will
a. replace the 300 amount with 310 and 900 with 910
b. replace the 500 amount with 510
c. replace the 900 amount with 910
d. replace the 800 amount with 810
e. none of the above
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
C# Programming From Problem Analysis To Program Design
ISBN: 9781285096261
4th Edition
Authors: Barbara Doyle
Question Posted: