I have the following expression in C. I'm asked whether we can predict the value of z
int x,y,z;
z= (x=2) + (y=x)
I know that the () operator has left associativity. Does this mean that the left parenthesis will be evaluated before the ones on the right?
I'm trying to understand if I got this concept correctly
Thanks in advance