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, 200, 100}};

the statement Write(points[1, 2] + points[0, 3]); will

a. display 900400

b. display 1300

c. display "points[1, 2] + points[0, 3]"

d. result in an error

e. none of the above

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

Step by Step Answer:

Question Posted: