summit.novell.com)
dmk.com)
20 May, 1995
This document specifies the form and interpretation of a pure extension to the language portion of the C standard to provide important additional flexibility to literals in expressions.
This document, although extending the C standard, still falls within the scope of that standard, and thus follows all rules and guidelines of that standard except where explicitly noted herein.
All references to clauses of the ISO standard and to sections of the former X3.159 standard will be presented in pairs. For example, ISO §6.4 (X3.159 §3.4) references constant expressions.
The syntax, constraints, and semantics for postfix-expression in ISO §6.3.2 (X3.159 §3.3.2) are augmented by the following:
The type name shall specify an object type or an array of unknown size.
No initializer shall attempt to provide a value for an object not contained within the entire unnamed object specified by the compound literal.1
If the postfix expression occurs in any context other than within the body of a function, the initializer list shall consist of constant expressions.
A postfix expression that consists of a parenthesized type name followed by a brace-enclosed list of initializers is known as a compound-literal. It provides an unnamed object with value given by the initializer list.2
If the type name specifies an array of unknown size, the size is determined by the initializer list as specified in ISO §6.5.7 (X3.159 §3.5.7), and the type of the compound literal is that of the completed array type. Otherwise (when the type name specifies an object type), the type of the compound literal is that specified by the type name. In either case, the result is an lvalue.
The value of the compound literal is that of an unnamed object initialized by the initializer list. The object has static storage duration if and only if the postfix expression occurs in a context other than within the body of a function; otherwise, it has automatic storage duration associated with the enclosing block.
Except that the initializers need not be constant expressions (when the unnamed object has automatic storage duration), all the semantic rules and constraints for initializer lists in ISO §6.5.7 (X3.159 §3.5.7) are applicable to compound literals.3 The order in which any side effects occur within the initialization list expressions is unspecified.4
String literals, and compound literals with const-qualified types, need not designate distinct objects.5
The file scope definition
int *p = (int []){2, 4};
initializes p to point to the first element of an array of two ints, the first having the value two and the second, four. The expressions in this compound literal must be constant. The unnamed object has static storage duration.
In contrast, consider the following:
void f(void)
{
int *p;
/*...*/
p = (int [2]){*p};
/*...*/
In this example, p is assigned the address of an unnamed automatic storage duration object that is an array of two ints, the first having the value previously pointed to by p and the second, zero.
Designated initializers [3] readily combine with compound literals. On-the-fly structure objects can be passed to functions without depending on member order:
drawline((struct point){.x=1, .y=1},
(struct point){.x=3, .y=4});
Or, if drawline instead expected pointers to struct point:
drawline(&(struct point){.x=1, .y=1},
&(struct point){.x=3, .y=4});
A read-only compound literal can be specified through constructions like:
(const float []){1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6}
The following three expressions have different meanings:
"/tmp/fileXXXXXX"
(char []){"/tmp/fileXXXXXX"}
(const char []){"/tmp/fileXXXXXX"}
The first always has static storage duration and has type array of char, but need not be modifiable; the last two have automatic storage duration when they occur within the body of a function, and the first of these two is modifiable.
Like string literals, const-qualified compound literals can be placed into read-only memory and can even be shared. For example,
(const char []){"abc"} == "abc"
might yield 1 if the literals’ storage is shared.
Since compound literals are unnamed, a single compound literal cannot specify a circularly linked object. For example, there is no way to write a self-referential compound literal that could be used as the function argument in place of the named object endless_zeros below:
struct int_list { int car; struct int_list *cdr; };
struct int_list endless_zeros = {0, &endless_zeros};
eval(endless_zeros);