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