The result of the expression i++ if i=1 will still be 1, as it is a postfix operator.
After executing the postfix operator, the value of i becomes equal to 2, but i will be re-written as unit as a result of the assignment operator fulfillment i = i ++
Login in to like
Login in to comment