1.

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

A. Error
B. 0
C. 1
D. Nothing
E. None of these
Answer» D. Nothing


Discussion

No Comment Found

Related MCQs