I have a structure like this:
typedef struct { int a; int b; int c; int d; } Hello;
then I declare it as follows:
Hello hello[6] = {};
Then I received this warning: ISO C forbids empty initializer strings, anyway, it seems to me that I need to initialize it, how to do it right?
user707549
source share