Answer:
Array + 36.
Step-by-step explanation:
The array contains the address of the first element or the starting address.So to find the address of an element we to add the size*position to the starting address of the array.Which is stored in the variable or word in this case.
There are 9 elements in the array and the size of integer is 4 bytes.So to access the last element we have to write
array + 4*9
array+36