PHP Control Structures (Loop)
What will be the output of the following PHP code ?
for ($count = 1; $count != 20;$count++) {
print $count;
$count++;
}

13579…21
123…….20
Infinite
1357…19

ANSWER DOWNLOAD EXAMIANS APP