|
|
|
|
|
by marcosdumay
3852 days ago
|
|
What? I was talking about my statement at the upper comment. I used x++ there, not ++x. The doubt is about the value of the other x. The difference you talk is about the main behavior of the operators. You won't find any description of them that does not state it. |
|
My apologies for answering the wrong question, but yes in that case the standard is also mostly clear that you can assume that things are evaluated from left to right in C/C++ and thus the first x in the line should be evaluated prior to the x++ later in the line...