0
What does this mean, like what's going on behind the scenes in memory heap etc??
int n; cout<<"enter a no"; cin>>n; int abc[n]; is this correct? it works in dev c++ so does this work like dynamic memory allocation??
1 Answer
+ 2
It's called a variable length array, and it's more commonly stored within the stack, not the heap