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

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

ANSWER DOWNLOAD EXAMIANS APP