Is there a sequence point between the two assignments in the following code:
f(f(x=1,1),x=2);
|
Is there a sequence point between the two assignments in the following code:
| |||
|
feedback
|
|
The relevant quote from the (draft) standard [6.5.2.2, 10] is:
So for your expression, the first argument (in particular the call to
Or, it could be evaluated after the second argument; e.g.:
[The function call itself can (and most probably will) contain more sequence points (in particular if it contains a Depending on that, there is a sequence point between the assignments or not. It is up to the platform ("unspecified"). Since in the 2nd case, you are assigning to | ||||
|
feedback
|
|
No there isn't. The standard is indeed ambiguous in this case. If you want to confirm that, gcc has this really cool option | |||||||||||||
feedback
|
|
There are sequence points at the beginning of a function call and at it's end. However because the order of operations on function arguments is implementation defined you can't gaurantee that Also note that the | ||||
|
feedback
|
|
There is a sequence point, but the order of evaluation (and their side effects) of the outer function's arguments is still undefined. The implementation is free to first evaluate the inner f(), with its side effect x=1, or the second argument with its side effect x=2. | |||||||||||||
feedback
|
|
Yes, because there is a sequence point before and after function calls. ยง1.0.17 of the Standard says:
| |||||||||||||||||||||
feedback
|
|
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 | |||||
feedback
|