Hello!
I have this operation:
t = (x - (y * (z + w)) - w) / 2;
where:
x = 268; y = 4; z = 20; w = 30;
As far as I know the result will be 49, but I getting 19.
Where is my error? (In using this code on a .Net Compact Framework 2.0 SP2 WinForm app).
Thank you.