1.

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

A. Nothing
B. 11812
C. 12811
D. Error
E. Nothing
Answer» C. 12811


Discussion

No Comment Found

Related MCQs