1.

What will be the output of the following PHP code ?
<?php
$m = 8;
echo $m = ++$m % 9 + ++$m;
?>

A. 10
B. 9
C. 8
D. Error
E. None of these
Answer» B. 9


Discussion

No Comment Found

Related MCQs