What will be the output of the following PHP code ?
<?php
$i = 0;$j = 1;$k = 2;
print !(( + + $i + $j) > ($j - $k));
?>
<?php
$i = 0;$j = 1;$k = 2;
print !(( + + $i + $j) > ($j - $k));
?>
A. 1
B. no output
C. error
D. 0
Answer: Option B

Join The Discussion