Discussion :: Expressions
-
In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators
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