Is it possible to set default values for some struct member? I tried the following but, it\'d cause syntax error:
typedef struct { int flag = 3; } MyStruct
You can implement an initialisation function:
employee init_employee() { empolyee const e = {0,"none"}; return e; }