What will be the output of the following PHP code ?
<?php
for ($count = 1; $count != 20;$count++)
{
print $count;
$count++;
}
?>
<?php
for ($count = 1; $count != 20;$count++)
{
print $count;
$count++;
}
?>A. Infinite
B. 123…….20
C. 1357…19
D. 13579…21
Answer: Option A

Join The Discussion