What I would like to do here is initializing all the players' names with the empty string value "", I have heard it can be done at the declaration point in C99, but I'm not entirely sure how.
typedef struct data_players
{ char name[25];
int hp;
int mana;
int id;
}player;
player player_list[10]
In this case how should I proceed?