why can we do this in c?
int n;
scanf("%d",&n);
int a[n];
I thought array is located memory during load time but seems like the above example works during runtime. Do I misunderstand any thing? can you guys help?
Thanks,
feedback
|
|
Yes, ordinary arrays like But in the code snippet A decent article on the need of VLAs can be found here :http://www.ddj.com/cpp/184401444 :) | ||||
|
feedback
|
|
I am no expert in C, but this could be a variable-length array as added by C99 and supported by GCC, for example. GCC allocates the memory for such array on stack, so that it gets automatically freed when you return from the function. | |||||
feedback
|
|
Variable-length arrays are not found in C89, but are a new feature in C99. | |||
|
feedback
|
|
Given how your code is written (specifically, that you have a statement), this must be code within a function. While I'm not sure if this is strictly required in the spec, within a function, all auto (i.e. function level, not static) arrays are put on the stack. So regardless of whether you have a regular or VL array, the memory is allocated at runtime. The memory for non-auto arrays is not handled at runtime so do no support VLA. If you try to compile the following code:
On the compiler I tested this on (gcc 4.2.1), I got following errors:
| |||
|
feedback
|