Answer:
The function is shown tin the explanation below:
Explanation:
The C or C++ function is given by the following function presentation:
# include
# include
# include
void static_allocation()
static int array[400000]; static array memory is alloted in program's data segment
void allocation_in stack_memory()
int array1[400000]; non static array memory allocation is done on stack, internally it calls alloca() to allocate which allocates from stack.