Q. What will be the output of the following PHP code ?
Code:<?php $n1 = 5; print $n = ++$n; ?>
β
Correct Answer: (C)
1
<?php $n1 = 5; print $n = ++$n; ?>
You must be Logged in to update hint/solution