1.

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

A. Error
B. 000000000........infinite time
C. 1111111.......infinite time
D. Nothing
E. None of these
Answer» C. 1111111.......infinite time


Discussion

No Comment Found

Related MCQs