Computer Science, asked by sejaldotcom, 10 months ago

int a=6; a-=(a--)-(--a); System.out.println(a);

Answers

Answered by Anonymous
3

a-=(a--)-(--a)

a=a-(a--)-(--a)

a=6-(6)-5

a=0-5

a=-5

System .out. println(a);


Output:


a=-5


Hope it helps u✌✌✌

Similar questions