我在Visual C 2010
中看不到任何alloca.h
等价物。如何在Windows上执行Visual C
的堆栈分配?我想念alloca
这个功能
参见_alloca
。Visual C使用_前缀来表示C头文件中的非标准函数。
windows中没有allocate .h。你应该
#include <malloc.h>
。alloc函数在这里