Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can it be assumed a evaluation order of the function parameters when calling it in C ? According to the following program, it seems that there is not a particular order when I executed it.

#include <stdio.h>

int main()
{
   int a[] = {1, 2, 3};
   int * pa; 

   pa = &a[0];
   printf("a[0] = %d\ta[1] = %d\ta[2] = %d\n",*(pa), *(pa++),*(++pa));
   /* Result: a[0] = 3  a[1] = 2    a[2] = 2 */

   pa = &a[0];
   printf("a[0] = %d\ta[1] = %d\ta[2] = %d\n",*(pa++),*(pa),*(++pa));
   /* Result: a[0] = 2  a[1] = 2     a[2] = 2 */

   pa = &a[0];
   printf("a[0] = %d\ta[1] = %d\ta[2] = %d\n",*(pa++),*(++pa), *(pa));
   /* a[0] = 2  a[1] = 2 a[2] = 1 */

}
share|improve this question

12 Answers

up vote 23 down vote accepted

No, function parameters are not evaluated in a defined order in C.

See Martin York's answers to What are all the common undefined behaviour that c++ programmer should know about?.

share|improve this answer
2  
This is so disturbing but so true – JaredPar Dec 18 '08 at 0:57
4  
It's not really disturbing. If the order of evaluation was defined, then you would have some C/C++ compilers generating less-than-optimal code. For example, if the args are pushed on to the stack from back-to-front, then evaluating them front-to-back means more temp storage to get the call right. – Ben Combee Dec 18 '08 at 14:52
3  
I thought the C-calling convention requires that args be pushed back-to-front, leaving param #0 always as the first item on the stack. The order of evaluation is not defined, but the simplest way is a loop: "Eval-Push-Repeat", moving from right-to-left. – abelenky Feb 2 '09 at 5:17
There are different calling conventions even just on x86 (en.wikipedia.org/wiki/X86_calling_conventions); some of them (e.g. pascal, Borland fastcall) push arguments left to right, without such flexibility permitted by the standard their implementation would be more difficult. – Matteo Italia Jul 28 '10 at 8:13
@abelenky: calling convention is up to the ABI. Defining the order of evaluation for function parameters would lead to suboptimal code for other-than-cdecl calling conventions (that is, not as pretty as evaluate-push-givemetenmore), at best. It's also insane to do so. :) – Michael Foukarakis Jul 28 '10 at 8:28

Order of evaluation of function arguments is unspecified, from C99 §6.5.2.2p10:

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.

Similar wording exists in C89.

Additionally, you are modifying pa multiple times without intervening sequence points which invokes undefined behavior (the comma operator introduces a sequence point but the commas delimiting the function arguments do not). If you turn up the warnings on your compiler it should warn you about this:

$ gcc -Wall -W -ansi -pedantic test.c -o test
test.c: In function ‘main’:
test.c:9: warning: operation on ‘pa’ may be undefined
test.c:9: warning: operation on ‘pa’ may be undefined
test.c:13: warning: operation on ‘pa’ may be undefined
test.c:13: warning: operation on ‘pa’ may be undefined
test.c:17: warning: operation on ‘pa’ may be undefined
test.c:17: warning: operation on ‘pa’ may be undefined
test.c:20: warning: control reaches end of non-void function
share|improve this answer

Just to add some experiences.
The following code:

int i=1;
printf("%d %d %d\n", i++, i++, i);

results in

2 1 3 - using g++ 4.2.1 on Linux.i686
1 2 3 - using SunStudio C++ 5.9 on Linux.i686
2 1 3 - using g++ 4.2.1 on SunOS.x86pc
1 2 3 - using SunStudio C++ 5.9 on SunOS.x86pc
1 2 3 - using g++ 4.2.1 on SunOS.sun4u
1 2 3 - using SunStudio C++ 5.9 on SunOS.sun4u

share|improve this answer
Actually, the unique "inconsistent" behavior is g++ 4.2.1 on SunOS.sun4u. Any guess why this happens? Are you sure about these numbers? BTW, Visual C++ 6.0 results in "1 1 1" (over Win7 32bits, dunno if this matters). – Diego Queiroz Aug 30 '12 at 20:47

While it is true that the order of parameter evaluation is not defined, compilers I've encountered so far all do it right-to-left. I'd never depend on this behavior, but its interesting to note.

The simplest example I know of is:

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

With a result of "3 2 1"

If someone knows of a compiler/platform that results in "1 2 3", or even "3 3 3", I'd love to know the details (compiler version? OS? hardware? etc).

share|improve this answer
Mac OS X, Linux, same: 3 2 1. They probably push everything on a stack and pop one by one to process the args. – ring0 Feb 22 at 15:33

As others already said, the order in which function arguments are evaluated is unspecified, and there is no sequence point between evaluating them. Because you change pa subsequently while passing each argument, you change and read pa twice in between two sequence points. That's actually undefined behavior. I found a very nice explanation in the GCC manual, which i think might be helpful:

The C and C++ standards defines the order in which expressions in a C/C++ program are evaluated in terms of sequence points, which represent a partial ordering between the execution of parts of the program: those executed before the sequence point, and those executed after it. These occur after the evaluation of a full expression (one which is not part of a larger expression), after the evaluation of the first operand of a &&, ||, ? : or , (comma) operator, before a function is called (but after the evaluation of its arguments and the expression denoting the called function), and in certain other places. Other than as expressed by the sequence point rules, the order of evaluation of subexpressions of an expression is not specified. All these rules describe only a partial order rather than a total order, since, for example, if two functions are called within one expression with no sequence point between them, the order in which the functions are called is not specified. However, the standards committee have ruled that function calls do not overlap.

It is not specified when between sequence points modifications to the values of objects take effect. Programs whose behavior depends on this have undefined behavior; the C and C++ standards specify that “Between the previous and next sequence point an object shall have its stored value modified at most once by the evaluation of an expression. Furthermore, the prior value shall be read only to determine the value to be stored.”. If a program breaks these rules, the results on any particular implementation are entirely unpredictable.

Examples of code with undefined behavior are a = a++;, a[n] = b[n++] and a[i++] = i;. Some more complicated cases are not diagnosed by this option, and it may give an occasional false positive result, but in general it has been found fairly effective at detecting this sort of problem in programs.

The standard is worded confusingly, therefore there is some debate over the precise meaning of the sequence point rules in subtle cases. Links to discussions of the problem, including proposed formal definitions, may be found on the GCC readings page, at http://gcc.gnu.org/readings.html.

share|improve this answer

To add even more fuel, the behaviour because it is undefined will be compiler-dependent...

share|improve this answer

But this code:

main()
{
    int a=10;
    printf("%d %d %d\n", ++a, a++, a);
}

prints

12 10 12

so order is not right to left.

share|improve this answer
What's your OS? – ring0 Feb 22 at 15:36

Grant's answer is correct, it's undefined.

BUT,,,

By your example, your compiler seems to be evaluating in right-to-left order (unsurprisingly, the order that arguments are pushed onto the stack). If you can do other tests to show that the order is maintained consistently even with optimizations enabled, and if you're only going to stick with that one version of the compiler, you can safely assume right-to-left ordering.

It's totally non-portable and a horrible, horrible thing to do, though.

share|improve this answer
1  
You play with fire for when the compiler is upgraded. Don't do it; people who play with fire get burned, sooner or later. – Jonathan Leffler Dec 17 '08 at 23:12
1  
Not only when the compiler is upgraded - you play with fire because your 'test' will almost certainly leave out something, so the eval order will change when someone adds a comment (or something) to the code next month. If you need the expressions to eval in a particular order, do them separately. – Michael Burr Dec 18 '08 at 0:39

If you are executing this code on a GCC compiler then the order of evaluation for printf statement is from right to left. Hence the result (you printed as a comment). I hope you know the incremental rules and diff between a++ and ++a.

share|improve this answer

Aditya, you should have specified which compiler you used, since it's an implementation defined behaviour. All the versions of Gnu C I have used so far use right to left evaluation order.

share|improve this answer
Actually, it is not 'implementation defined behaviour'; it is 'undefined behaviour'. There is a difference, even if an implementation defines a behaviour for what the standard says is 'undefined behaviour'. – Jonathan Leffler Feb 23 '10 at 16:19

Try this:

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

I get 2 1 3 with VS2003

share|improve this answer
Rather weird - but totally unguaranteed. – Jonathan Leffler Feb 23 '10 at 16:18

I think it COMPILES FROM RIGHT TO LEFT

   int a[] = {1, 2, 3};
   int * pa; 
   pa = &a[0];
   printf("a[0] = %d\ta[1] = %d\ta[2] = %d\n",*(pa), *(pa++),*(++pa));

So according to the new Idea of compilation from RIGHT TO LEFT

  1. printf("a[0] = %d \t ta[1] = %d \t t[2] = 2 ", *(pa) , *(pa++) )) // The last *(++pa) was now evaluated to 2 and put inside a[3] 's %d

  2. printf("a[0] = %d \t ta[1] = 2 \t t[2] = 2", *(pa) ) // The second last *(pa++) was now evaluated to 2 and put inside a[1] 's %d

  3. printf("a[0] = 3 \t ta[1] = 2 \t t[2] = 2" ) // The first *(pa) was now evaluated to 3 and put inside the a[0] 's %d

share|improve this answer
gcc: a[0] = 3 a[1] = 2 a[2] = 3, clang: a[0] = 1 a[1] = 1 a[2] = 3, it's truly undefined, and different compilers produce different results. – Daniel Fischer May 12 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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