I am trying to solve this out:
x = 10; y = 0; z = 5;
y = z * x++
y = z * ++x
The instruction maunal (500 pages long) that I am reading all it tells me is that the answer to the x++ problem is:
y = 50 and x = 11.
I know how to get the x++ all you have to do is add an increment of 1.
x = x + 1.
Can someone please help me, because I cant figure out what I am doing wrong! I am not understanding where the book got 50 from!