- Given The Following Code Int Arr 4 3 1 4 2 To Access The 3rd Value I E 4 You D Use O D Arr 2 O Y A 1 (71.17 KiB) Viewed 7 times
* Given the following code: int arr[4] = {3,1,4,2}; To access the 3rd value (i.e., 4) you'd use: O (d) &arr[2]; O (y) *a
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
* Given the following code: int arr[4] = {3,1,4,2}; To access the 3rd value (i.e., 4) you'd use: O (d) &arr[2]; O (y) *a
* Given the following code: int arr[4] = {3,1,4,2}; To access the 3rd value (i.e., 4) you'd use: O (d) &arr[2]; O (y) *arr[2]; (r) arr[2]; O (v) Only 2 of the above O(g) All of the above (well,not including the answer Only 2 of the above...)