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 in some cases in C and the compiler takes some approach. I'm trying to find the behavior of gcc in following cases.

For b=3; how does

a) b++ + ++b + ++b + ++b; returns 19
b) ++b + ++b; returns 10
c) ++b + ++b + ++b + ++b; returns 23
d) b++ - ++b; returns 0

Taking an example of part (d) From my understanding b++ will return 3 in some temp variable and make b=4 while ++b will return 5 and make b=5 too. so 3-4 should return -1 not 0.

similarly in part (b) i expect first ++b to return 4 and second to return 5 and finally sum should return 9 not 10.

edit: I know that its undefined by language and that i should never write compiler deepened code. But I want to know is the order/approch taken by compiler (Mingw/GCC 3.4.2) for above cases?

Edit 2: Since i can't self answer my questions yet posting it here in here

Answer: okay finally got my answer. generated the assembly code using gdb. for part (a)

Dump of assembler code for function main:
0x0000000000000000 <main+0>: push %rbp
0x0000000000000001 <main+1>: mov %rsp,%rbp
0x0000000000000004 <main+4>: sub $0x10,%rsp
0x0000000000000008 <main+8>: movl $0x0,-0x8(%rbp)
0x000000000000000f <main+15>: movl $0x3,-0x4(%rbp)
0x0000000000000016 <main+22>: addl $0x1,-0x4(%rbp) // ++b (4)
0x000000000000001a <main+26>: mov -0x4(%rbp),%eax // b (4)
0x000000000000001d <main+29>: add -0x4(%rbp),%eax// b+ b (4)
0x0000000000000020 <main+32>: addl $0x1,-0x4(%rbp)// ++b (5)
0x0000000000000024 <main+36>: add -0x4(%rbp),%eax // 8+b(5)
0x0000000000000027 <main+39>: addl $0x1,-0x4(%rbp) // ++b (6)
0x000000000000002b <main+43>: add -0x4(%rbp),%eax// 13+b(6)
0x000000000000002e <main+46>: mov %eax,-0x8(%rbp)//i=19
0x0000000000000031 <main+49>: addl $0x1,-0x4(%rbp)//b++ (7)
0x0000000000000035 <main+53>: mov -0x8(%rbp),%esi
0x0000000000000038 <main+56>: mov $0x0,%edi
0x000000000000003d <main+61>: mov $0x0,%eax
0x0000000000000042 <main+66>: callq 0x47 <main+71>
0x0000000000000047 <main+71>: leaveq
0x0000000000000048 <main+72>: retq

can easily understand now what it is doing. Did same with rest. Thankyou all for bearing with me ^_^

link|improve this question
5  
These are using undefined behavior. That means that the next version of gcc could do the same code completely differently, or this version may generate different results because of differences that are not immediately evident. I'd say avoid the issue and write the code in a manner that operates in a known good way. – That Chuck Guy Dec 30 '11 at 20:00
2  
The answer is you do not need to know. You just need to know that you do have to write a code which depends on such behaviors. – Als Dec 30 '11 at 20:02
The answers are: a) yes b) yes c) yes d) yes – sixlettervariables Dec 30 '11 at 20:12
I do admire the person who thought to vote to close this question as "too localized". – Pascal Cuoq Dec 30 '11 at 21:12
feedback

closed as exact duplicate by sixlettervariables, Pascal Cuoq, Jens Gustedt, Greg Hewgill, Mysticial Dec 31 '11 at 0:47

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

5 Answers

You seem to misunderstand undefined, the compiler is allowed to do anything, including crashing, or return 43, or ignoring the variables and returning constants.

It's undefined, so you can't reason about what the compiler is doing.

link|improve this answer
+1 for explaining what undefined means, the OP does not seem to understand the concept. – carlosdc Dec 30 '11 at 20:18
5  
@Als I think by paragraph 2 of 6.5, in particular footnote 70 (84 in n1570), the examples are really undefined behaviour. – Daniel Fischer Dec 30 '11 at 21:21
@DanielFischer: Agreed. Removed my incorrect comment. – Als Jan 3 at 2:45
feedback

Modifying an object (b in your different expressions) more than one time between the previous and the next sequence point is undefined behavior in C. Undefined behavior means that anything can happen. So the values you see are not guaranteed and could change between two successive calls of your program or between two different compilers.

link|improve this answer
feedback

I expect first ++b to return 4 and second to return 5...

This is why your question is not getting a positive response.

If undefined behavior is not meeting your expectations, then it is working as described.

link|improve this answer
feedback

Use brackets:

a) (b++)+(++b)+(++b)+(++b); returns 21
link|improve this answer
using brackets gives 21 output. But i am not trying to get it. I'm trying to understand order taken by gcc in above cases. – Waqas Rana Dec 30 '11 at 19:58
As mentioned below, it's undefined behaviour. This means anything can happen and what happens is dependent on specific implementation logic. You may divine why it happens in the Linux GCC, only to try and use the MinGW GCC or the Microsoft C Compiler and find that the assumptions that you'd come to expect changed. Just use brackets to insure the behaviour you want, don't rely on implementation-specific undefined behaviour...ever. – Robert Allan Hennigan Leahy Dec 30 '11 at 20:00
Parenthesis don't affect the order of evaluation, or the time side effects take place. They do affect operator precedence, but this isn't the issue in this question. – ugoren Dec 30 '11 at 20:25
feedback
example a evaluates like (3 + (3+1)  + (4+1) + (5+1) + 1 )

the b++ means increment after operation
the ++b means increment variable before operation

so a starts like b++ + ++b with the compiler writing a note to add 1 when done, 
so a become 3 + ++b then compiler says ok stop and increment b
so a becomes 3 + 4 then compiler says alright i got 7 + ++b, stop increment b again
so a becomes 7 + 5 then compiler has 12 + ++b, stop increment b again,
so a becomes 12 + 6, compile says alright i got 18, then checks its note and says o yeah + 1
so a becomes 18 + 1 = 19

similarly, example b is ++b + ++b so compiler says stop increment b,
then it is 4 + ++b, agian compiler says stop increment b,
then it is 5 + 5 = 10

same logic applies to c but it happens one operation at a time, so
++b + ++b becomes 4 + ++b becomes 5 + 5 then 
10 + ++b becomes 10 + 6 then
16 + ++b become 16 + 7 = 23

logic from a applies to d
b++ - ++b becomes 3 - ++b and don't forget to increment when done, 
3 - ++b becomes 3 - 4 = - 1 , and oh yeah I'm done increment,
-1 + 1 = 0
link|improve this answer
1  
Thanks a lot this was what i wanted :) – Waqas Rana Dec 30 '11 at 20:34
To all you pedantic haters, this guy was just interested in a little logical comprehension, I am rather sure neither he nor I support the use of unspecified behavior in programming, we just wanted to find a consistency, to show that the computer wasn't throwing dice. – Motes Dec 30 '11 at 21:09
@Motes: Don't take it personally. Nobody conveyed hatred that I noticed. – Drew Dormann Dec 30 '11 at 21:58
1  
@Motes unfortunately your "logic" is nonsense. There is no logic here. "b++ + ++b" could just as easily become "4 + 4 - 1" as "3 + 4 - 1". – ams Dec 30 '11 at 22:21
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.