I've made a loop with i as it's counter variable.
Inside that loop I'm comparing cells of an array.
I'm wondering what's the difference between array[i++] (or array[++i]) to array[i+1].
Since i++ (or ++i) don't work in the wanted way while i+1 does (a little bag which drove me crazy).
Thanks in advance.