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