Which of the following is the correct way to assign an integer value 5 to element of a matrix say ‘m’ at second row and third column? (A) m[2][3] = 5 ; // [row][col] (B) m[3][2] = 5 ; (C) m[1][2] = 5 ; (D) m*2+*3+ = ‘5’;►Correct Option Correct Option is: A