Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

13 Answers

up vote 207 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.

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.

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 operator++() is a function and the compiler can't know to optimize away the creation of a temporary object to hold the intermediate value.

share|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
3  
Since in most cases they produce identical code, I prefer i++ because it's of the form "operand-operator", a la an assignment "operand-operator-value". In other words, the target operand is on the left side of the expression, just like it is in an assignment statement. – David R Tribble Dec 11 '12 at 16:49

i++ is known as Post Increment whereas ++i is called Pre Increment.

i++

i++ is post increment because it increments i's value by 1 after the operation is over.

Lets see the following example:

int i = 1, j;
j = i++;

Here value of j = 1 but i = 2. Here value of i will be assigned to j first then i will be incremented.

++i

++i is pre increment because it increments i's value by 1 before the operation. It means j = i; will execute first and then i++.

Lets see the following example:

int i = 1, j;
j = ++i;

Here value of j = 2 but i = 2. Here value of i will be assigned to j after the i incremention of i. Similarly ++i will be executed before j=i;.

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.

for(i=0; i<5; i++)
   printf("%d ",i);

And

for(i=0; i<5; ++i)
   printf("%d ",i);

Both the loops will produce same output. ie 0 1 2 3 4.

It only matters where you are using it.

for(i = 0; i<5;)
    printf("%d ",++i);

In this case output will be 1 2 3 4 5.

share|improve this answer
Nice explanation... – Sachin Mhetre Mar 28 '12 at 9:21
1  
+1 ,IMHO should have been the best answer – Beagle Bone Mar 25 at 7:52

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.

share|improve this answer
4  
-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

@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

share|improve this answer

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.

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

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

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

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

share|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

a=i++ means i value will be stored in a without incrementing a=++i means i value will be stored with incrementing...

share|improve this answer

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) ...
share|improve this answer

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 ? :)

share|improve this answer
@Abhinav, Since addition is associative, the answer to both is the same. – Brad Wilson Aug 24 '08 at 5:41
5  
Both have undefined behavior. – R.. Oct 6 '10 at 8:18
No, after undefined behavior, nothing is guaranteed, not even the associativity of addition. – R.. Oct 6 '10 at 8:19

Well, a guest the best explanation for i++ and ++i is seeing these operation as functions:

i++ is equivalent with:

int postincr(int &i)
{int j;
j=i;
i=i+1;
return j;}

++i is equivalent with:

int preincr(int &i)
{i=i+1;
return i;}

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.

share|improve this answer
equivalentish... since there isn't a stack frame and a return involved in i++ they may be analogous, but not equivalent – Grady Player May 14 at 17:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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