Q. What will be the output of the following PHP code ?
Code:<?php
$p = 20;
if ($p = $p&0)
print $p ;
else
print "Executed...";
?>
β
Correct Answer: (C)
Executed...
<?php
$p = 20;
if ($p = $p&0)
print $p ;
else
print "Executed...";
?>
You must be Logged in to update hint/solution