1.

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

A. Error
B. 15
C. Nothing
D. 15..........Infinite time
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs