In a C programming exam question, I found this:
int a, b=0, x=4, y=5;
a=((a=x%y?b+1:y--)&&(x-=y))||(y-=6);
Is this expression UB?
I would say no, because of the sequence point (SP) between logic operators and between expressions of ?:. So, to my understanding, the horrible hack would be evaluated correctly as:
x%y this gives 4 (exp is true)
a= b+1 this assigns 1 to a and we have a SP (exp is true)
y-- this is not evaluated
x-=y this assigns -1 to x and we have a SP (exp is true)
y-=6 this is not evaluated
a= this assigns the result of the || operator to a (1)
Finally a=1, x=-1, nothing else is changed. Any mistake?