Computer Science, asked by sanjayrawt1122, 7 months ago

The operator used before the variable as ++×​

Answers

Answered by Anonymous
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