Computer Science, asked by AtikshSinghComputer, 3 months ago

If x=4 and y=5,calculate the value of variable x after the execution of the following statement

x- = --x +x - --y;​

Answers

Answered by kamalrajatjoshi94
2

Answer:

int x=4,y=5;

x-= --x+x - --y;

x=4-(3+3-4)

x=4-(2)

x=4-2

x=2

Similar questions