1.

What will be the output of the following PHP code ?
<?php
for ($p = 1; $p < 10; ++$p)
{
print "*";
}
?>

A. *********
B. ******
C. ***
D. Error
E. Nothing
Answer» B. ******


Discussion

No Comment Found

Related MCQs