0
wrong question
x++ is not equivalent to x=x+1 because their return value is different. ++x is equivalent
3 Antworten
0
But x will be incremented anyway
0
it doesn't matter which one you choose. it only makes a difference when you assign it to another variable.
x=8;
b= ++x. //9
b= x++. //8