I have been looking for related GCC document which allows to declare something like this.
unsigned int subs = 10;
unsigned int array1[subs];
I'm aware such declaration is valid and work using gcc. I would like to get the relevant GCC document that specifies it's okay to declare.
Thanks,