I've gone through other similar questions, but trying to understand the situation I'm facing.

So, here's my two line C code.

int i=0;
printf("%d %d %d %d %d",i++,i--,++i,--i,i);

And here are the outputs I get from GCC and Turbo C Compiler.

GCC

Output:

-1 0 0 0 0

Turbo C

Output:

-1 0 0 -1 0

I tried all sorts of experiments with pre-increment operator individually, and both compilers work similar but when I use above printf statement, output differs.

I know that Turbo C is age-old compiler and now obsolete and non-standard but still can't get an idea what's wrong with above code.

link|improve this question

70% accept rate
4  
Your teacher should have explained that the behaviour is undefined - otherwise he/she is effectively wasting your time. The problem is that the compiler's free to decide when to apply the affects of the pre- and post-increments as long as they're between "sequence points". If you google that term, read the wikipedia article, you'll find the background information you need to understand the behaviour you describe. – Tony Delroy May 20 '11 at 5:15
2  
@Tony: Thanks for the brief article over sequence points. – Kush May 20 '11 at 5:28
feedback

3 Answers

up vote 6 down vote accepted

It's undefined behavior, you're both reading and modifying i multiple times without a sequence point. (The , in the function parameter list is not a sequence point, and the order of evaluation of function arguments is not defined either.)

The compiler can output whatever it wants in this situation. Don't do that.

Find a whole host of other similar issues by search this site for [C] undefined behavior. It's quite enlightening.

link|improve this answer
+1. for mentioning sequence point – Mitch Wheat May 20 '11 at 5:16
What is treated as sequence point? – Kush May 20 '11 at 5:23
1  
A few things, like the end of a full expression. See Sequence point for s simple explanation. – Mat May 20 '11 at 5:28
feedback

Turbo C is evaluating the arguments for printf() from the last argument in the variable arguments list to the first, and printing in that order as well (i.e., it's filling in the last value, and then moving forward in the list with the last evaluation being the first variable argument in the list, which prints to the first integer-slot in your formatted-string). GCC on the other-hand is first is evaluating the arguments that have pre-fix operators, concatenating those results, and applying them to all pre-fix operators (i.e., it's applying --i and ++i which ends up equaling 0, and then using that value for both slots in the format string associated with those arguments). It's then moving to the post-fix operators (first i-- and then i++) , and finally it evaluates the variable args with no pre-fix or post-fix operators (i.e., the value of i, which at this point is simply 0). As others have noted, the ordering can be arbitrary.

link|improve this answer
feedback

There is no guarantee of the order in which function parameters are evaluated; it's undefined behaviour.

This order could change from version to version or even compile to compile.

link|improve this answer
Strictly speaking, the order of evaluation is unspecified behavior, ie the compiler may implement this in one of many ways defined by the standard (left-to-right or right-to-left). The undefined behavior in the example is that "i" is modified several times inside the same expression, and that it is accessed for other purposes than to calculate the new value to be stored inside "i". – Lundin May 20 '11 at 6:44
@Mitch No, you said that the order of evaluation is undefined behavior, which is not true. – Lundin May 20 '11 at 9:41
@Lundin: the order in which [function] parameters are evaluated is undefined behaviour – Mitch Wheat May 20 '11 at 9:46
ISO 9899:1999 6.5.2.2.10 The order of evaluation of the function designator, the actual arguments, and subexpressions within the actual arguments is unspecified, but there is a sequence point before the actual call. – Lundin May 20 '11 at 11:41
@Lundin: dude, that's what I'm saying! obviously not eloquently enough.... – Mitch Wheat May 20 '11 at 13:16
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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