Q. What will be the output of the following PHP code ?
Code:
<?php $m = 8; echo $m = ++$m % 9 + ++$m; ?>
β
Correct Answer: (A)
10
<?php $m = 8; echo $m = ++$m % 9 + ++$m; ?>
You must be Logged in to update hint/solution