1.

What will be the output of the following PHP code ?
<?php
$p = 0;
for(++$p; ++$p; ++$p)
{
print $p;
if ($p == 6)
break;
}
?>

A. Error
B. 2
C. 24
D. 246
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs