Home / C Programming / Operators and Expressions :: Discussion

Discussion :: Operators and Expressions

  1. Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5?

  2. A.

     450

    B.

     10

    C.

     110

    D.

     -10

    E.

     -110

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    As the expression is evaluated from right to left.


Be The First To Comment