Register or Login to Your Account
Difference between x+=1 and x++?
Say I want to check an array at the position after x. X is currently 5
x=5
arr[x+=1].check
are[x++].check
What are the differences? Say I want to check x = 6 in that line