1.

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

A. 2345678......infinite time
B. 12345678...........infinite time
C. Error
D. Nothing
E. None of these
Answer» B. 12345678...........infinite time


Discussion

No Comment Found

Related MCQs