Why is the use of alloca() not considered good practice? alloca() allocates memory on the stack rather than on the heap, as in the case of malloc(). So, when I return from the routine the memory is freed. So,... May 5, 2022 0 Comments