Tagged Questions

79
votes
15answers
14k views

Is there a performance difference between i++ and ++i in C?

Is there a performance difference between i++ and ++i if the resulting value is not used?
71
votes
13answers
7k views

Is there a performance difference between i++ and ++i in C++?

We looked at this answer for C in this question: http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c What's the answer for C++?
1
vote
23answers
4k views

What is more efficient i++ or ++i? [closed]

Exact Duplicate: Is there a performance difference between i++ and ++i in C++? Exact Duplicate: Why should I use ++i? Exact Duplicate: Difference between i++ and ++i in a loop? What is more ...