6.5.15 Conditional operator

Previous Table of Contents

1254

conditional-expression:
                logical-OR-expression
                logical-OR-expression ? expression : conditional-expression

1255 The first operand shall have scalar type.

1256 One of the following shall hold for the second and third operands:

1257 —  both operands have arithmetic type;

1258 —  both operands have the same structure or union type;

1259 —  both operands have void type;

1260 —  both operands are pointers to qualified or unqualified versions of compatible types;

1261 —  one operand is a pointer and the other is a null pointer constant; or

1262 —  one operand is a pointer to an object or incomplete type and the other is a pointer to a qualified or unqualified version of void.

1263 The first operand is evaluated;

1264 there is a sequence point after its evaluation.

1265 The second operand is evaluated only if the first compares unequal to 0;

1266 the third operand is evaluated only if the first compares equal to 0;

1267 the result is the value of the second or third operand (whichever is evaluated), converted to the type described below.93)

1268 If an attempt is made to modify the result of a conditional operator or to access it after the next sequence point, the behavior is undefined.

1269 If both the second and third operands have arithmetic type, the result type that would be determined by the usual arithmetic conversions, were they applied to those two operands, is the type of the result.

1270 If both the operands have structure or union type, the result has that type.

1271 If both operands have void type, the result has void type.

1272 If both the second and third operands are pointers or one is a null pointer constant and the other is a pointer, the result type is a pointer to a type qualified with all the type qualifiers of the types pointed-to by both operands.

1273 Furthermore, if both operands are pointers to compatible types or to differently qualified versions of compatible types, the result type is a pointer to an appropriately qualified version of the composite type;

1274 if one operand is a null pointer constant, the result has the type of the other operand;

1275 otherwise, one operand is a pointer to void or a qualified version of void, in which case the result type is a pointer to an appropriately qualified version of void.

1276 93) A conditional expression does not yield an lvalue.

1277 EXAMPLE The common type that results when the second and third operands are pointers is determined in two independent stages. The appropriate qualifiers, for example, do not depend on whether the two pointers have compatible types.

Given the declarations


        const void *c_vp;
        void *vp;
        const int *c_ip;
        volatile int *v_ip;
        int *ip;
        const char *c_cp;

the third column in the following table is the common type that is the result of a conditional expression in which the first two columns are the second and third operands (in either order):

c_vp      c_ip     const void *
v_ip      0        volatile int *
c_ip      v_ip     const volatile int *
vp        c_cp     const void *
ip        c_ip     const int *
vp        ip       void *

Next

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