Is there a sequence point between the two assignments in the following code:
f(f(x=1,1),x=2);
Yes there will be a sequence point due to comma operatror But still result will be undefined as evaluation of function arguments is undefined so can't predict what value this expression will generate........means undefined behaviour