Q. What will be the output of the following PHP code ?
Code:
<?php $n = 15; $n = $n + 12; echo $n++; ?>
β
Correct Answer: (D)
27
<?php $n = 15; $n = $n + 12; echo $n++; ?>
You must be Logged in to update hint/solution