Q. What will be the output of the following PHP code ?
Code:
<?php
$p = 25;
$q = 26;
if ($p < ++$p || $q < ++$q)
print "if statement executed...";
else
print "else statement executed...";
?>
β
Correct Answer: (A)
else statement executed...