Computer Science, asked by ArjunTomar9767, 10 months ago

Explain stack based storage management in programming languages

Answers

Answered by aryan4025
0

Stack-based allocation is normally used in C/C++, Ada, Algol, and Pascal for local variables in a procedure and for procedure call information. It allows for recursive procedures, and also allocates data only when the procedure or function has been called -- but is reasonably efficient at the same time.

Similar questions