Q. What will be the output of the following PHP code ?
Code:
<?php
if (print "Ninth" - 9)
print "Tenth"
?>
β
Correct Answer: (D)
-9Tenth
<?php
if (print "Ninth" - 9)
print "Tenth"
?>
You must be Logged in to update hint/solution