Question: With the following declaration: int [ , ] points = {{300, 100, 200, 400, 600}, {550, 700, 900, 200, 100}}; the statement Write(points[1, 2] +
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
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
