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