Post Increment with respect to Sequence Points

喜夏-厌秋 提交于 2019-11-28 02:27:43

The correct interpretation is C, ie. the increment happens sometime before the next sequence point, specifically the C standard (C99, 6.5.2.4, 2) says this:

The side effect of updating the stored value of the operand shall occur between the previous and the next sequence point.

Full paragraph quotation:

The result of the postfix ++ operator is the value of the operand. After the result is obtained, the value of the operand is incremented. (That is, the value 1 of the appropriate type is added to it.) See the discussions of additive operators and compound assignment for information on constraints, types, and conversions and the effects of operations on pointers. The side effect of updating the stored value of the operand shall occur between the previous and the next sequence point.

The post increment operation always occurs before the next sequence point irrespective of the expression where the increment operator is being used. See this link for more info http://en.wikipedia.org/wiki/Sequence_point

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!