Tagged Questions

4
votes
9answers
790 views

Why can’t I do ++i++ in C-like languages?

Half jokingly half serious: why can't I do ++i++ in C-like languages, specifically in C#? I'd expect it to increment the value, use that in my expression, then increment again.
30
votes
17answers
3k 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?
35
votes
13answers
3k views

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

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

Difference between i++ and ++i in a loop?

Is there a difference in ++i and i++ in a for loop? Is it simply a syntax thing?
-1
votes
6answers
124 views

Potentially a philosophical question: ++i or i++ ? [closed]

Possible Duplicates: Pre and post increment/decrement operators in C# Difference between i++ and ++i in a loop? Consider this code segment (let's say I am forced to use …
0
votes
23answers
1k 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? …