Q41
How do you access the element at the second row and third column of a two-dimensional array named 'matrix' in C++?
A.
matrix(3, 2)
B.
matrix[3][2]
C.
matrix(2, 3)
D.
matrix[2][3]
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board