1.

What will be the output of the following PHP code ?
<?php
$p = 3;
$q = 4;
$r = $p++ + ++$q;
echo $r;
?>

A. Error
B. 8
C. 3
D. 4
E. None of these
Answer» C. 3


Discussion

No Comment Found

Related MCQs