int z,x=5,y=-10,a=4,b=2; z = x++ - --y * b / a; What will be the value of z in the sample code given above?
Reveal answer
Fill a bubble to check yourself
int z,x=5,y=-10,a=4,b=2; z = x++ - --y * b / a; What will be the value of z in the sample code given above?