What will be the output of the following PHP code ?
<?php
$a = 5; $b = -7; $c =0;
$d = ++$a && ++$b || ++$c;
print $d; print $a;
?>
<?php
$a = 5; $b = -7; $c =0;
$d = ++$a && ++$b || ++$c;
print $d; print $a;
?>
A. 16
B. 06
C. 15
D. 05
Answer: Option A

Join The Discussion