What will be the output of the following PHP code ?
<?php
for ($x =1; $x < 10;++$x)
{
print "*t";
}
?>
<?php
for ($x =1; $x < 10;++$x)
{
print "*t";
}
?>A. **********
B. *********
C. ***********
D. infinite loop
Answer: Option B

Join The Discussion