1.

What will be the output of the following PHP code ?
<?php
$p = 5;
$q = 6;
if (++$p == $q++)
{
echo "true ", $q, $p;
}
?>

A. true
B. 7
C. 6
D. true 67
E. true 76
Answer» F.


Discussion

No Comment Found

Related MCQs