6.5.2.2 Function calls

Previous Table of Contents

989 The expression that denotes the called function78) shall have type pointer to function returning void or returning an object type other than an array type.

990 If the expression that denotes the called function has a type that includes a prototype, the number of arguments shall agree with the number of parameters.

991 Each argument shall have a type such that its value may be assigned to an object with the unqualified version of the type of its corresponding parameter.

992 A postfix expression followed by parentheses () containing a possibly empty, comma-separated list of expressions is a function call.

993 The postfix expression denotes the called function.

994 The list of expressions specifies the arguments to the function.

995 An argument may be an expression of any object type.

996 In preparing for the call to a function, the arguments are evaluated, and each parameter is assigned the value of the corresponding argument.79)

997 If the expression that denotes the called function has type pointer to function returning an object type, the function call expression has the same type as that object type, and has the value determined as specified in 6.8.6.4.

998 Otherwise, the function call has type void.

999 If an attempt is made to modify the result of a function call or to access it after the next sequence point, the behavior is undefined.

1000 If the expression that denotes the called function has a type that does not include a prototype, the integer promotions are performed on each argument, and arguments that have type float are promoted to double.

1001 These are called the default argument promotions.

1002 If the number of arguments does not equal the number of parameters, the behavior is undefined.

1003 If the function is defined with a type that includes a prototype, and either the prototype ends with an ellipsis (, ...) or the types of the arguments after promotion are not compatible with the types of the parameters, the behavior is undefined.

1004 If the function is defined with a type that does not include a prototype, and the types of the arguments after promotion are not compatible with those of the parameters after promotion, the behavior is undefined, except for the following cases:

1005 78) Most often, this is the result of converting an identifier that is a function designator.

1006 79) A function may change the values of its parameters, but these changes cannot affect the values of the arguments.

1007 On the other hand, it is possible to pass a pointer to an object, and the function may change the value of the object pointed to.

1008 A parameter declared to have array or function type is adjusted to have a pointer type as described in 6.9.1.

1009 —  one promoted type is a signed integer type, the other promoted type is the corresponding unsigned integer type, and the value is representable in both types;

1010 —  both types are pointers to qualified or unqualified versions of a character type or void.

1011 If the expression that denotes the called function has a type that does include a prototype, the arguments are implicitly converted, as if by assignment, to the types of the corresponding parameters, taking the type of each parameter to be the unqualified version of its declared type.

1012 The ellipsis notation in a function prototype declarator causes argument type conversion to stop after the last declared parameter.

1013 The default argument promotions are performed on trailing arguments.

1014 No other conversions are performed implicitly;

1015 in particular, the number and types of arguments are not compared with those of the parameters in a function definition that does not include a function prototype declarator.

1016 If the function is defined with a type that is not compatible with the type (of the expression) pointed to by the expression that denotes the called function, the behavior is undefined.

1017 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.

1018 Recursive function calls shall be permitted, both directly and indirectly through any chain of other functions.

1019 EXAMPLE In the function call


        (*pf[f1()]) (f2(), f3() + f4())

the functions f1, f2, f3, and f4 may be called in any order. All side effects have to be completed before the function pointed to by pf[f1()] is called.

1020 Forward references: function declarators (including prototypes) (6.7.5.3), function definitions (6.9.1), the return statement (6.8.6.4), simple assignment (6.5.16.1).

Next

Created at: 2005-06-29 02:18:59 The text from WG14/N1124 is copyright © ISO