Tagged Questions
The pre-increment tag has no wiki summary.
77
votes
15answers
13k 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?
69
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++?
31
votes
6answers
514 views
C# Pre- & Post Increment confusions
I am a little confused about how the C# compiler handles pre- and post increments and decrements...
When i code the following:
int x = 4;
x = x++ + ++x;
x will have the value 10 afterwards. I ...
22
votes
16answers
10k 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?
17
votes
8answers
3k 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.
11
votes
2answers
664 views
Multiple preincrement operations on a variable in C++(C ?)
Why does the following compile in C++?
int phew = 53;
++++++++++phew ;
The same code fails in C, why?
9
votes
6answers
651 views
Difference between i = ++i and ++i [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
What is the difference between i = ++i; and ++i; where i is an integer with value ...
5
votes
3answers
143 views
Closure Compiler - can a++ >= 3 become ++a > 3?
I admit that I asked a question about why Closure Compiler does not shorten certain code which looks shortenable at first sight a few days ago already, but that reason is not applicable in this case ...
5
votes
6answers
1k views
Post Increment and Pre Increment concept?
I dont understand the concept of postfix and prefix increment or decrement. Can any one give a better Explanation?
4
votes
5answers
77 views
++nc vs nc = nc + 1
In K&R Ch 1:
The statement ++nc presents a new operator, ++, which means increment by one. You could instead write nc = nc + 1, but ++nc is more concise and often more efficient.
When would ...
4
votes
4answers
125 views
Is the pre-incriment operator thread-safe? (java)
I'm making a program in java that races a few cars against each other. Each car is a separate thread.
When cars complete the race, each one all calls this method. I've tested the method at varying ...
4
votes
4answers
215 views
C# difference between arr[0]++ and ++arr[0]
In C#, is there a difference between the code (all in one statement, not part of a larger one) arr[0]++; and ++arr[0];
I fully understand, that in C / C++ / Objective-C, that this would not do the ...
4
votes
8answers
3k views
Incrementing in C++ - When to use x++ or ++x?
I'm currently learning C++ and I've learned about the incrementation a while ago.
I know that you can use "++x" to make the incrementation before and "x++" to do it after.
Still, I really don't know ...
3
votes
3answers
59 views
Precedence of pre- and post-increment operators [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
Which has the higher precedence, postfix operators or prefix operators? For ...
3
votes
4answers
81 views
Atypical uses for Javascript's ++ and — operators
If I recall correctly from Crockford's "Javascript: The Good Parts", he is not in favor of using the ++ or -- operators, but I also tend to recall he doesn't provide an especially strong argument ...
3
votes
5answers
199 views
How does this code work?
I am looking at c++ for dummies and found this code
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int nextStudentId = 1000; // first legal Student ...
1
vote
3answers
71 views
Pre / Post Increment Explanation
Please be easy on me and don't shoot me as I'm still newbie.
I'm totally confused and can't for life figure out why when I run this code:
int y = 9;
cout << "++y = " << ++y << ...
1
vote
5answers
120 views
how does increment work? [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
Undefined Behavior and Sequence Points
Ok we all know that i++ increments value ...
1
vote
2answers
126 views
Doubt in C increment operator [closed]
Possible Duplicate:
post and pre increment in c
I am new to C, i have an Increment operator program in C
#include<stdio.h>
main(){
int a, b;
a = 2;
b = a + ++a + ++a;
...
1
vote
4answers
181 views
equivalent expression for a[j++] = ++i without using pre or post increment operators
So I am pondering this question (this is a homework/exam review problem):
Write down an equivalent expression for a[j++] = ++i; without using pre/post increment operators. If no such expression can ...
1
vote
10answers
451 views
++i or i++ in for loops? [closed]
Possible Duplicate:
Is there a performance difference between i++ and ++i in C++?
hi I was wondering in a normal for loop why eclipse and some other people code writing ++i is there a ...
1
vote
1answer
122 views
Does implementation of ++i vs. i++ vary from language to language?
I recently read:
"The expressions (++i) and (i++) have values and side effects.
The side effect is that the value in i is increased by 1.
The value of (i++) is the value before the increment and
the ...
1
vote
2answers
557 views
whether a language needs preIncrement (++x) and postIncrement (x++)
i have never seen the usecase for preincrement and postincrement in actual code.
The only place i see them most often are puzzles.
My opinion
is, it introduces more confusion rather than being ...
1
vote
5answers
3k views
explain working of post and pre increment operator in Java
can you explain me the output of this in case of Java
int a=5,i;
i=++a + ++a + a++;
i=a++ + ++a + ++a;
a=++a + ++a + a++;
System.out.println(a);
System.out.println(i);
The output is 20 ...
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 ...
0
votes
5answers
198 views
Multiple increment operators in single statement [closed]
Possible Duplicate:
Undefined Behavior and Sequence Points
Pleae explain the behaviour of following statements
int b=3;
cout<<b++*++b<<endl;
How will it be calculated?
0
votes
7answers
365 views
Operator Precedence.. () and ++
Salute..
I have an unusual problem.
Here in this table in MSDN library we can see that precedence of () is higher than ++ (Pre-increment) .
but when I run this code, it seems that precedence of ...
0
votes
5answers
137 views
is there a reason to use ++$i in for loop?
i have following code for loop
for ($i=0; $i<=(count($subusers)-1); ++$i) {
is there a reason to use ++$i instead of $i++ if latter doing same thing?
-1
votes
7answers
349 views
The difference between ++Var and Var++ [closed]
Possible Duplicate:
whether a language needs preIncrement (++x) and postIncrement (x++)
In programming, particularly in Java, what is the difference between:
int var = 0;
var++;
and
...
-3
votes
5answers
145 views
Explaining different outputs of ++b and b++ using gcc C compiler [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
Doubt in C increment operator
From what i have searched the behavior is undefined ...