1.

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

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


Discussion

No Comment Found

Related MCQs