1.

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

A. 123456789101112.......infinite time
B. Error
C. 12345
D. Nothing
E. None of these
Answer» B. Error


Discussion

No Comment Found

Related MCQs