"/>
Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    $i = 1;

    if ($i++ && ($i == 1))

    printf("Yesn$i");

    else

    printf("Non$i");

    ?>

  2. A.

     No 2

    B.

     Yes 1

    C.

     Yes 2

    D.

     No 1

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The first condition returns true and increments but the second condition is false.


Be The First To Comment