Hi,
Can somebody please tell me what is the difference between row0 and row1?
For a (4,3) matrix stored in an array arr, if row one is denoted by arr[0], then what do the instructions mean when they say row0?
Thanks in advance!
The arrays are zero-indexed, so row0 refers to arr[0] which is the first row, while row1 refers to arr[1] which is actually the second row, and so on.