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