Examveda
Examveda

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

A. 20

B. 19

C. 12345678910….19

D. 12345678910….1920

Answer: Option A

Solution(By Examveda Team)

The for loop has no body,it just runs till condition is satisfied.

This Question Belongs to PHP >> Control Structures(Loop In PHP)

Join The Discussion

Related Questions on Control Structures(Loop in PHP)