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