Y
Hacker News
new
|
ask
|
show
|
jobs
by
uecker
143 days ago
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.