Is there a way to initialize the whole array of structures (maybe using compound literals) after it is being declared?
typedef struct
{
int a;
int b;
} tStruct;
/* Array of structures in declared in global scope, but not initialized */
tStruct myStruct[3];
void init()
{
/* We want to initizlize the array with specific values*/
/* using compound literals to initialize the whole array doesn't work */
myStruct = (tStruct[])
{
{1, 2},
{3, 4},
{5, 6}
};
}
Arrays aren't R values, so you can't copy them via assignemnt. But you can use
memcpy
The code generated by an optimizing compiler shouldn't be much worse than what you'd get with
or
Gcc and clang are well capable of eliding an unnecessary compound variable like that in favor of assigning individual components directly.
https://gcc.godbolt.org/z/j9f37j
The biggest downside of the
memcpy
approach is that it's a bit brittle and type-unsafe (and can result in out-of-bounds reads/writes if the unenforced type compatibility is violated).If your C dialect has __typeof, then with some macro trickery you should be able to almost get around this C language limitation: