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

Join The Discussion