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 a
array[i++] means "take the array element with index i, then increment i". array[i+1] means "take the array element with index i+1, do not modify i".
array[i++]
array[i+1]