What will be the output of the following PHP code ?
<?php
if (0.1)
print "hi" ;
else
print "how are u";
?>
<?php
if (0.1)
print "hi" ;
else
print "how are u";
?>A. how are u
B. hi
C. error
D. no output
Answer: Option B

Join The Discussion