I am begginer in C programming. Can you tell me why I can't use one field in struct in another field?
struct example{
int length;
int array[length];
}
Can you tell me what's the scope struct has? I know that is just struct tag not real struct variable,but please explain to me.