I want to initialize a struct element, split in declaration and initialization. This is what I have:
typedef struct MY_TYPE { bool flag; short int value;
You've almost got it...
MY_TYPE a = { true,15,0.123 };
Quick search on 'struct initialize c' shows me this