It is common to use {0}
to initialize a struct
or an array
but consider the case when the first field isn't a scalar type. If the first field of struct Person
is another struct
or array, then this line will result in an error (error: missing braces around initializer
).
struct Person person = {0};
At least GCC allows me to use an empty initializer list to accomplish the same thing
struct Person person = {};
But is this valid C code?
Also: Is this line guaranteed to give the same behavior, i.e. a zero-initialized struct
?
struct Person person;
static
variables, but I'm going off a single sentence in Wikipedia here. – Moresstruct X{}; int main(){ struct X x = {}; return 1; }
Give it a try. – Hedve