Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$a = 1; $b = 1; $d = 1;
print ++$a + ++$a+$a++; print $a++ + ++$b; print ++$d + $d++ + $a++;
?>
Answer : Option A
Explanation :
Follow the order of post and pre increments.
Be The First To Comment