int z, x=5, y=-10, a=4, b=2

1.1 int z, x=5, y=-10, a=4, b=2;
z=x++ - --y * b / a;
What will be the final value of z?
A) 5
B) 6
C) 10
D) 11


Leave a Reply