In C, what is the difference between using ++i and i++, and which should be used in the incrementation block of a for loop?
|
|
For a In any case, follow the guideline "prefer There's a couple of comments regarding the efficiency of The efficiency question is interesting... here's my attempt at an answer: Is there a performance difference between i++ and ++i in C? As On Freund notes, it's different for a C++ object, since |
|||||||||||||||
|
|
i++ is known as Post Increment whereas ++i is called Pre Increment.
Lets see the following example:
Here value of
Lets see the following example:
Here value of For your question which should be used in the incrementation block of a for loop? the answer is, you can use any one.. no matter. It will execute your for loop same no. of times.
And
Both the loops will produce same output. ie It only matters where you are using it.
In this case output will be |
|||||||
|
|
The reason ++i can be slightly faster than i++ is that i++ can require a local copy of the value of i before it gets incremented, while ++i never does. In some cases, some compilers will optimize it away if possible... but it's not always possible, and not all compilers do this. I try not to rely too much on compilers optimizations, so I'd follow Ryan Fox's advice: when I can use both, I use ++i. |
|||||
|
|
@Ahinav and Brad Wilson: The statements
and
are undefined in C (meaning the compiler can do whatever it wants with them). The standard says:
|
|||
|
|
|
Please don't worry about the "efficiency" (speed, really) of which one is faster. We have compilers these days that take care of these things. Use whichever one makes sense to use. |
|||
|
|
|
The effective result of using either is identical. In other words, the loop will do the same exact thing in both instances. In terms of efficiency, there could be a penalty involved with choosing i++ over ++i. In terms of the language spec, using the post-increment operator should create an extra copy of the value on which the operator is acting. This could be a source of extra operations. However, you should consider two main problems with the preceding logic.
In my opinion, the whole issue simply boils down to a style preference. If you think pre-increment is more readable, then use it. Personally, I prefer the post-incrment, but that is probably because it was what I was taught before I knew anything about optimization. This is a quintessential example of premature optimization, and issues like this have the potential to distract us from serious issues in design. It is still a good question to ask, however, because there is no uniformity in usage or consensus in "best practice." |
|||
|
|
|
Not sure the original poster is interested, but in C++ the difference in performance can be substantial, since the creation of the temporary object might be expensive for a user defined type. |
|||
|
|
|
++i increments the value, then returns it. i++ returns the value, and then increments it. It's a subtle difference. For a for loop, use ++i, as it's slightly faster. i++ will create an extra copy that just gets thrown away. |
|||||
|
|
Avoid using ++i and/or i++ in a function call. The result of the next instruction is not determined according to C standard:
Some compilers will display: 100;100 while others will display: 100;101 |
|||||
|
|
a=i++ means i value will be stored in a without incrementing a=++i means i value will be stored with incrementing... |
|||
|
|
|
I assume you understand the difference in semantics now (though honestly I wonder why people ask 'what does operator X mean' questions on stack overflow rather than reading, you know, a book or web tutorial or something. But anyway, as far as which one to use, ignore questions of performance, which are unlikely important even in C++. This is the principle you should use when deciding which to use: Say what you mean in code. If you don't need the value-before-increment in your statement, don't use that form of the operator. It's a minor issue, but unless you are working with a style guide that bans one version in favor of the other altogether (aka a bone-headed style guide), you should use the form that most exactly expresses what you are trying to do. QED, use the pre-increment version:
|
|||
|
|
|
Gotcha: Using both in the same statement can be unintuitive. I remember this being a good trick question earlier:
v/s
What is the value of x in each of the two statements ? :) |
|||||||||
|
|
Well, a guest the best explanation for i++ and ++i is seeing these operation as functions: i++ is equivalent with:
++i is equivalent with:
The differences are clearly visible now. i++ requires an extra variable and one more instruction in order to perform the same operation, so i++ is less efficient than ++i. |
|||
|