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