alloca function in C

Cemre Mengü picture Cemre Mengü · Feb 4, 2012 · Viewed 9.7k times · Source

I was revising C and came across to alloca/free functions which is described as allocating storage on a stack like space. Is this same as the malloc/free ? or this is something different ? Thanks.

Answer

David Heffernan picture David Heffernan · Feb 4, 2012

I think you mean alloca which is used to allocate memory on the stack. And yes, this is different from malloc and free which allocate on the heap.

Don't attempt to free memory allocated with alloca because it is automatically freed when the function that calls alloca returns to its caller.

Using alloca and/or C99 variable length arrays can be a risky business because you can readily overflow the stack if you use these tools imprudently.