Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will be the output of the following PHP code ?

    <?php

    $i = 0;

    while (++$i && --$i)

    {

    print $i;

    }

    ?>

  2. A.

     1234567891011121314….infinitely

    B.

     01234567891011121314…infinitely

    C.

     no output

    D.

     error

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    The first conditio itsef fails thus the loop exits.


Be The First To Comment