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
Variable-length arrays are not found in C89, but are a new feature in C99.