A
Q. What will be the output of the following PHP code ?
Code:
<?php
for ($c = 4; $c < 9; $c++)
{
for(; $c < 9; $c++)
print"c";
}
?>
for ($c = 4; $c < 9; $c++)
{
for(; $c < 9; $c++)
print"c";
}
?>
- Correct Answer - Option(D)
- Views: 19
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.