...
are allowed, while statements like
Code Block | ||
---|---|---|
| ||
i = ++i + 1; /* i is modified twice between sequence points */ a[i = ++]i =+ i1; /* i is read other than to determine the value to be stored */ a[i++] = i; |
are not.
Non-Compliant Code Example
...
...
are allowed, while statements like
Code Block | ||
---|---|---|
| ||
i = ++i + 1; /* i is modified twice between sequence points */ a[i = ++]i =+ i1; /* i is read other than to determine the value to be stored */ a[i++] = i; |
are not.
...