Given a 2D array of integers what would be the correct way of-02710
Given a 2D array of integers, what would be the correct way of assigning the value 5 to the element at second row and third column?
This multiple choice question (MCQ) is related to the book/course
vu cs201 Introduction to Programming.
It can also be found in
vu cs201 Final Term - Quiz No.19.
Given a 2D array of integers, what would be the correct way of assigning the value 5 to the element at second row and third column?
m[2][3] = 5;
m[3][2] = 5;
m[1][2] = 5;
m[2][3] = '5';