I have a struct like this:
typedef struct
{
int a;
int b;
int c;
int d;
} Hello;
then I declare it in this way:
Hello hello[6] = {};
Then I got this warning: ISO C forbids empty initializer braces, anyhow I think I need to initialize it, how to do it in the right way?
Will initialize all members of each struct to 0.