Hi, I'm looking to initialize a global array of stucts in C within the header file however it keeps complaining when compiling. Here's my struct
typedef struct
{
char input[100][100];
int count;
char name;
}INPUT;
extern INPUT[] global;
Thanks