1.

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

A. Error
B. 12
C. Nothing
D. 1212
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs