Report Bug
Qus : Which of the following correctly accesses the fifth element of an array arr?
QusWhich of the following correctly accesses the fifth element of an array arr?

A. arr[4]
B. arr(5)
C. arr[5]
D. arr[6]


Solution
A. arr[4]






Report Bug