

MCQOPTIONS
Saved Bookmarks
1. |
What is the syntax of printing the first element of an array Arr using get() function? |
A. | Arr.get(0) |
B. | get<0>(Arr) |
C. | Arr.get[0] |
D. | get<0>[Arr] |
Answer» C. Arr.get[0] | |