> This means that the number of actively-deferred statements is unbounded, which implies heap allocation.
In C you can allocate dynamically on the stack using alloca or a VLA.
> This means that the number of actively-deferred statements is unbounded, which implies heap allocation.
In C you can allocate dynamically on the stack using alloca or a VLA.
But also: https://stackoverflow.com/a/1018865