when I run this statement
result = 2 * 3 + --num - (7 / num);
it give me runtime error rather than -1 why? it looks like decrement executed before the parentheses!
when I run this statement
result = 2 * 3 + --num - (7 / num);
it give me runtime error rather than -1 why? it looks like decrement executed before the parentheses!