Tagged Questions

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?
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.
12
votes
10answers
562 views

C programming ++ operator

Why does this code always produce x=2? unsigned int x = 0; x++ || x++ || x++ || x++ || ........; printf("%d\n",x);
6
votes
4answers
398 views

Post-Increment Operator: Unexpected Behavior [closed]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) My code is as follows: #include <stdio.h> int main() { int x = 10, y = 0; ...
5
votes
3answers
158 views

Is ++ the same as += 1 for pointers?

I'd like to refactor some old C code of mine, and I was curious if I can replace all ptr++ with ptr += 1 where ptris some pointer, without changing any behavior. Here's an example of what I mean, from ...
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
3answers
307 views

When dereferencing and post-incrementing a pointer to function pointer, what happens first?

Given this code: typedef void (*Thunk)(); Thunk* gFP; void foo(){ printf("Foo "); *gFP(); }; void bar(){ printf("Bar "); Thunk Codex[] = { foo, bar }; gFP = Codex; (*gFP++)(); Does the ...
2
votes
7answers
481 views

C/C++ Post-increment by more than one

I'm reading bytes from a buffer. But sometimes what I'm reading is a word or longer. // assume buffer is of type unsigned char * read_ptr(buffer+(position++)) That's fine but how can I ...
1
vote
4answers
197 views

C: Pointer confusion

I understand this is part of the basic stuff, but i am stuck :-( Can someone please help me? Program 1: #include <stdio.h> #include <stdlib.h> int main() { int a=1,b=2,c; c=(a+b)++; ...
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 ...
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
1answer
254 views

Post Increment with respect to Sequence Points

When does the post increment operator affect the increment? I have come across two opinions: 1) From http://gd.tuwien.ac.at/languages/c/programming-bbrown/c_015.htm: POST means do the operation ...
-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 ...