So i have these structs
typedef struct user
{
char username[30];
char password[30];
char email[100];
char nome[30];
}user;
typedef struct admin
{
char nome[30];
char passwd[30];
}admin;
and i want to create these arrays with them
user database[50];
user banlist[100];
admin list[10];
how can i allocate memory for them