0
Output
Why is the output of this code 16??🤔🤔 Since x=8 x++ should be 9. Then x+=y- - should be 9+7 then 16 will be deducted by 1 because of - - operator to make it 15??
3 Respuestas
0
only the y variable get deducted by 1(it became 6),but the return value for y-- still 7
0
thanks