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 ^_^