Given the following code, int "arr = new int[4]; To place 4 in the 3rd space in the array, you'd use: O (r) &arr[2]=4; O
Posted: Sun Jul 10, 2022 11:29 am
Given the following code, int "arr = new int[4]; To place 4 in the 3rd space in the array, you'd use: O (r) &arr[2]=4; O (p) arr[2]=4; O (e) *arr[2]=4; (s) Only 2 of the above O (o) All of the above (not including the answer Only 2 of the above) O Other: