Computer Science, asked by amkul936, 7 months ago

What is the value stored in x after evaluating the expression? x=10; x *= x++ + ++x *5 - x--;

Answers

Answered by Neeraj546
0

Answer:

Mark Me as Brainleast and follow me...

Explanation:

x++ =5 so..

5*2 = 10

(x=6 here the increment happends after the value is used)

3*5 ➡(1 is taken from x first before the value is used this is why its 5 again)

5*2 = 10

3*5 = 15

x = 25

Similar questions