[Solved] Variable arguments in C functions

c itself doesn’t specify things like “heap” or “stack”, so programming standard and portable c, you should better think in categories of the c standard: static, automatic and dynamic storage. Nevertheless, in a typical implementation, “automatic storage” translates to “the stack is used for it”. This is the case for function arguments and variadic functions … Read more