1.

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

A. c
B. cc
C. ccc
D. cccc
E. ccccc
Answer» F.


Discussion

No Comment Found

Related MCQs