The comments are supposed to describe the mode of operation. For example "the volume up push button is an active low push button tied to the pin 10 interrupt handler. While the button is pressed and held down, the volume (internal variable) is increased in 2.5 dB increments until approaching the limit of 90 dB.
Tells you nothing new - a wasted comment. Everyone who can program know this. A comment that describes what you do.
i++; // increase i to move to the next entry
A better comment, explaining why you do what you do. Always add information in your comments that the code doesn't supply already. If you name your variables and methods well, good code is often self-explanatory. Use comments when it's not.
Of course in this trivial example no comment would be needed.