1.

What will be the output of the following PHP code ?
<?php
for ($k = 5; $k <= 9; print ++$k)
{
print ++$k;
}
?>

A. Error
B. Infinite loop
C. 678910
D. 67891011
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs