Since c99
compound literals can be used to e.g. initialize pointers:
int *p = (int []) {1, 2, 3, 4};
while this is usually used for struct
s it can be used to initialize anonymous arrays as well (see example). But if I understood this correctly initializing a scalar pointer like this:
int *p = &(int) {4};
is also valid. What I find confusing is the statement on the gcc
site that “Compound literals for scalar types and union types are also allowed, but then the compound literal is equivalent to a cast.” Do they simply mean that using the address-of operator &
in front of an anonymous scalar is a form of casting?
By definition a compound literal does not consist of
&
address-of operator. From N15706.5.2.5/p3
Compound literals:Now, their statement:
is rather wrong if I am reading it correctly. The fundamental difference between compound literal and cast operator is that the former is a lvalue, as by N1570
6.5.2.5/p4
(emphasis mine):while the latter is not,
6.5.4/p5
Cast operators (emphasis mine):