Vidyalelo
C++ Programming · Q41

Arrays and Strings in C++

Programming · C++ Programming · question 41

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]
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board