Answer:
x = arr[ARR_SIZE-2];
Step-by-step explanation:
As array is arr has been declared:
int arr[6] = {0,1,2,3,4,5}; " ARR_SIZE=6"
As x is an integer then
x = arr [ARR_SIZE-2];
It means working will be
x= arr[6-2];
x=arr[4]; at index 4 we get
=4
9.2m questions
11.9m answers