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

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

ANSWER DOWNLOAD EXAMIANS APP