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
Infinite
1357…19
123…….20

ANSWER DOWNLOAD EXAMIANS APP