Tagged Questions
3
votes
5answers
853 views
C/C++ Math Order of Operation
So I know that C++ has an Operator Precedence and that
int x = ++i + i++;
is undefined because pre++ and post++ are at the same level and thus there is no way to tell which one will get calculated ...
-3
votes
4answers
323 views
Can Javascript break mathematical rules? [closed]
I was taught that in maths we evaluate things, with the acronym BODMAS
Brackets, Orders(powers), Division, Multiplication, Addition, Subtraction.
I understand that in Javascript, * and / have equal ...
58
votes
12answers
4k views
Why is $a + ++$a == 2?
If I try this:
$a = 0;
echo $a + ++$a, PHP_EOL;
echo $a;
I get this output:
2
1
Demo: http://codepad.org/ncVuJtJu
Why is that?
I expect to get this as an output:
1
1
My understanding:
...
