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