I do not see the equivalent of alloca.h in Visual C 2010 . How can stack distribution be done in Visual C on Windows? I skip the alloca function.
alloca.h
Visual C 2010
Visual C
alloca
See _alloca . Visual C uses the _ prefix for custom functions in C. headers.
_alloca
There is no alloca.h in the windows. You should
#include <malloc.h>
instead of this. The alloca function is