Yeah, so I’m new to C, and I came across an error when dealing with the following code:
typedef struct{
    int head;
    int length;
    Customer customer[MAX_LENGTH];
} CustomerCi;
And the error that came out was:
error: variably modified 'customer' at the file scope
How can I fix this?
 
     
    