__alloca

Purpose

Allocates space for an object. The allocated space is put on the stack and freed when the calling function returns.

Prototype

void* __alloca (size_t size)

Parameters

size
An integer representing the amount of space to be allocated, measured in bytes.