Home »
MCQs »
C++ MCQs
If we create an array 'Arr', which is the correct way to access the first element of the array?
120. If we create an array "Arr", which is the correct way to access the first element of the array?
- Arr[0]
- 0[Arr]
- *(Arr+0)
- All the above
Answer: D) All the above
Explanation:
All the given options are the correct way to access the first element of the array.