The operator used before the variable as ++×
Answers
Answered by
6
Answer:
The only difference between the two is their return value. The former increments ( ++ ) first, then returns the value of x , thus ++x . The latter returns the value of x first, then increments ( ++ ), thus x++ .
Explanation:
I think it will help you
Similar questions