Consider the following program code:
$val = 5;
if ($val++ == 6)
{
print("True ");
}
else
print("False ");
What is the output of this code?
False False
False True
True False
True True
Submit