Translate the following loop into C. Assume that the C-level integer i is held in register X10,X0 holds the C-level integer called result, and X1 holds the base address of the integer MemArray. ORR X10, XZR, XZR LOOP: LDUR X11, [X1, #0] ADD X0, X0, X11 ADDI X1, X1, #8 ADDI X10, X10, #1 CMPI X10, 100 B.LT LOOP 2.29 [10] <§2.7> Rewrite the loop from Exercise 2.28 to reduce the number of LEGv8 instructions executed. Hint: Notice that variable i is used only for loop control.