For the following MIPS assembly instructions what is the corresponding C statement? Assume that variables f,g,h,i, and j are assigned to registers $s0, $s1, $s2, $s3, and $s4. Assume that the base address of the arrays A and B are in registers $s6 and $s7, respectively. Add comments for each line to describe what each instruction does.
addi $t0, $s6, 4 # $t0 = &A+4 = &A[1]
add $t1, $s6, $zero #
sw $t1, 0($t0) #
lw $t0, 0($t0) #
add $s0, $t1, $t0 #