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...