Hacker News new | ask | show | jobs
by apaprocki 143 days ago
`-Wvla` Friends don’t let friends VLA :)
1 comments

alloca is certainly worse. Worst-case fixed size array on the stack are also worse. If you need variable-sized array on the stack, VLAs are the best alternative. Also many other languages such as Ada have them.