#include<stdio.h>
int main()
{
int i=7,j;
j=(i++,++i,j*i);
return 0;
}
j=(i++,++i,j*i);Is this well defined ? Let me clear my doubt.
j=(i++,++i,j*i);Is this well defined ? Let me clear my doubt.
| ||||
|
feedback
|
|
This expression is OK because the comma operator is a sequence point:
However do not confuse it with the following where the comma is not acting as a sequence point:
The multiplication operator is not a sequence point. (Excuse me hijacking your answer) From ยง3.4 of ISO 9899:1999 (C Standard):
| |||||||||||||
feedback
|
|
Yes, It's well defined. sequence point | |||||||
feedback
|
|
In your code " ," will be work as sequence point. so in this
expression would be work from left to right. at the last j*i would be stored in j; but lastly your result would be elegant because " j " have no predefined data if you don't use " () " your code would be work as single statement such as
| |||
|
feedback
|
i += 2; j *= i? – JeremyP Aug 28 '10 at 10:36