What will be the output of the following PHP code ?
<?php
$a = "1";
$b = "0";
if ((int)$a && $b)
print"hi";
else
print "hello";
?>
<?php
$a = "1";
$b = "0";
if ((int)$a && $b)
print"hi";
else
print "hello";
?>A. hello
B. no output
C. hi
D. error
Answer: Option A

Join The Discussion