Which expression adds 1 to the element of array arrayName at index i, assuming the array is of type int?
a) ++arrayName[i]
b) arrayName++[i]
c) arrayName[i++]
d) None of the above.
a) ++arrayName[i]
Computer Science & Information Technology