Home / C Programming / Expressions :: Discussion

Discussion :: Expressions

  1. In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators

  2. A.
    True
    B.
    False

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    The equal to = operator has Right-to-Left Associativity. So it assigns b=5 then a=b.


Be The First To Comment