I have a question question about initialization of static variable in C, I know if we declare a global static variable, but default, the value is 0, for example:
static int a; //althrough we do not initiaize it, the value of a is 0
but what about the following data structure:
typedef struct
{
int a,
int b,
int c,
} Hello;
static Hello[3] hello;
are all of the members in each struct of hello[0], hello[1], hello[2] initiaized as 0?