Home / General Knowledge / Testing New :: Discussion

Discussion :: Testing New

  1. Determine Output:

    void main()

    {

    int i=10;

    i=!i>14;

    printf("i=%d", i);

    }

  2. A.

     10

    B.

     14

    C.

     0

    D.

     1

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    In the expression !i>14 , NOT (!) operator has more precedence than ">" symbol. ! is a unary logical operator. !i (!10) is 0 (not of true is false). 0>14 is false (zero).


Be The First To Comment