How to initialize a struct in accordance with C programming language standards

前端 未结 15 2666
予麋鹿
予麋鹿 2020-11-21 22:59

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;         


        
15条回答
  •  抹茶落季
    2020-11-22 00:06

    You've almost got it...

    MY_TYPE a = { true,15,0.123 };
    

    Quick search on 'struct initialize c' shows me this

提交回复
热议问题