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

20
19
12345678910….19
12345678910….1920

ANSWER DOWNLOAD EXAMIANS APP