Nested structures/arrays initialization
I have a structure that contains an arrays of another structure, it looks something like this: typedef struct bla Bla; typedef struct point Point; struct point { int x, y; }; struct bla { int another_var; Point *foo; }; I now want to initialize them in the global scope. They are intended as description of a module. I tr...