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

12345678910….19
19
20
12345678910….1920

ANSWER DOWNLOAD EXAMIANS APP