Hi Ian,
Thank you very much.
Thanks to your answer, I now understand that I did not phrase the question correctly.
I'd like to define and initialize a structure Array as follows:
STRUCT_TYPE myStruct[ ] =
{
{INDEX0, &gVar0},
{INDEX1, &gVar1},
...
{IndexN, &gVarN}
};
and I want that...