* 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
Posted: Tue Jul 05, 2022 10:25 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) *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...)