Q. What will be the output of the following PHP code ?
Code:<?php
if (!print "First")
if (print "Second")
print "Third";
?>
β
Correct Answer: (C)
First
<?php
if (!print "First")
if (print "Second")
print "Third";
?>
You must be Logged in to update hint/solution