up vote 59 down vote favorite
14
share [g+] share [fb]

In C, what is the difference between using ++i and i++. And which should be used in the incrementation block of a for loop?

link|improve this question
feedback

11 Answers

up vote 85 down vote accepted
  • ++i will increment the value of i, and then return the incremented value.

     i = 1;
     j = ++i;
     (i is 2, j is 2)
    
  • i++ will increment the value of i, but return the pre-incremented value.

     i = 1;
     j = i++;
     (i is 2, j is 1)
    

For a for loop, either works. ++i seems more common, perhaps because that is what is used in K&R.

In any case, follow the guideline "prefer ++i over i++" and you won't go wrong.

update: there's a couple of comments regarding the efficiency of ++i and i++. In any non-student-project compiler, there will be no performance difference. You can verify this by looking at the generated code, which will be identical.

update 2: the efficiency question is interesting... here's my attempt at an answer:

http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i

update 3: As On Freund notes, it's different for a C++ object, since operator++() is a function and the compiler can't know to optimize away the creation of a temporary object to hold the intermediate value.

link|improve this answer
Won't this effect weather the loop runs once more upon reaching the end condition? For example, for(int i=0; i<10; i++){ print i; } won't this be different than for(int i=0; i<10; ++i){ print i; } My understanding is that some languages will give you different results depending upon which you use. – jonnyflash Aug 16 '11 at 17:58
1  
jonnyflash, both will operate identically, since the increment of i and the print are in different statements. This should be the case for any language that supports C-style ++. The only difference between ++i and i++ will be when using the value of the operation in the same statement. – Mark Harrison Aug 16 '11 at 18:44
So if you incremented within the loop instead of in the compound for statement it would make a difference, right? Such as for(int i=0; i<10){ print i; ++i; – jonnyflash Aug 17 '11 at 21:34
no, since the print and increment are in different statements, the increment can be either ++i or i++. If instead you had print ++i and print i++ the results would be different. – Mark Harrison Aug 18 '11 at 0:46
feedback

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.

link|improve this answer
1  
-1 for C++ answer to C question. There is no more "local copy" of the value of i than there is of the value 1 when you write a statement 1;. – R.. Oct 6 '10 at 8:17
feedback

@Ahinav and Brad Wilson:

The statements

x = i++ + ++i;

and

x = ++i + i++;

are undefined in C (meaning the compiler can do whatever it wants with them). The standard says:

Between the previous and next sequence point an object shall have its stored value modified at most once by the evaluation of an expression. Furthermore, the prior value shall be accessed only to determine the value to be stored.

See The Comp.Lang.C FAQ Article on Sequence Points

link|improve this answer
feedback

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.

  1. Modern compilers are great. All good compilers are smart enough to realize that it is seeing an integer increment in a for-loop, and it will optimize both methods to the same efficient code. If using post-increment over pre-increment actually causes your program to have a slower running time, then you are using a terrible compiler.

  2. In terms of operational time-complexity, the two methods (even if a copy is actually being performed) are equivalent. The number of instructions being performed inside of the loop should dominate the number of operations in the increment operation significantly. Therefore, in any loop of significant size, the penalty of the increment method will be massively overshadowed by the execution of the loop body. In other words, you are much better off worrying about optimizing the code in the loop rather than the increment.

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."

link|improve this answer
feedback

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.

link|improve this answer
feedback

Avoid using ++i and/or i++ in a function call. The result of the next instruction is not determined according to C standard:

int i=100;
printf("%i;%i",i++,i);

Some compilers will display: 100;100

while others will display: 100;101

link|improve this answer
1  
This pathological example gets it wrong, sure, but there are plenty of legitimate ways to use pre- or post-increment within the argument list of a function call. This is fine, for example: int i = 100, j = 200; printf("%i;%i", i++, ++j); // "100;201" - guaranteed – John Zwinck Jan 9 '09 at 2:54
feedback

++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.

link|improve this answer
I am not aware of any compiler where it does make a difference for integers at least. – blabla999 Jan 12 '09 at 21:50
feedback

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.

link|improve this answer
feedback

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:

for (int i = 0; i != X; ++i) ...
link|improve this answer
feedback

Gotcha : Using both in the same statement can be unintuitive. I remember this being a good trick question earlier.

x = i++ + ++i ; v/s x = ++1 + i++

What is the value of x in each of the two statements ? :)

link|improve this answer
2  
Both have undefined behavior. – R.. Oct 6 '10 at 8:18
feedback

@Abhinav,

Since addition is associative, the answer to both is the same.

link|improve this answer
3  
No, after undefined behavior, nothing is guaranteed, not even the associativity of addition. – R.. Oct 6 '10 at 8:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.