Question Continued: In C programming Language: For the Question below: What order would 3 (Number 3) be assigned to the variables? As in which variable would receive 3 first, second and third? And which variable would have 3 in the end?
Question: A = B = C = 3
Further explanation of What I'm asking/My attempts to understand this concept:
According to the image I've attached stating the Associativity of Operators, the Assignment operators should be from left to right no?
So should 3 be assigned to A, then B, and then C?
According to a practice question solution it is the opposite, 3 being assigned to C, then B, then A, so am very confused why it's right to left? When the Associativity of Operators say it's left to right!