When does (pre|post)increment happen?

Question

Why do these print what they do?

$n = 1;
print $n / ++$n;
$n = 1;
print $n / $n++;

Peter J. Acklam's original post

Next