Tagged Questions
61
votes
14answers
12k views
Why is alloca not considered good practice?
Alloca allocates memory from Stack rather then heap which is case in malloc. So, when I return from the routine the memory is freed. So, actually this solves my problem of freeing up of dynamically ...