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?
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
679 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
667 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 ...
4
votes
5answers
78 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 ...
3
votes
3answers
78 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 ...
1
vote
5answers
127 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
132 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
186 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 ...
0
votes
5answers
217 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?
-3
votes
5answers
159 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 ...