What is a stack in MVC?

Asked 14-Nov-2017
Viewed 779 times

1 Answer


0

“Stack in MVC” 

A stack is used for static memory allocation and it allocates the memory at compile times. It also follows the rules of LIFO (Last in First Out). In the stack, size limitation is varied according to the operating system. We can easily access the variables that are allocated on the stack and it also takes less time in comparison of heap allocation. 


What is a stack in MVC?