Saved Bookmarks
| 1. |
What do you mean by stack variables ? |
|
Answer» Answer: ⏩⏩ ➡The run-time stack, consisting of stack frames, is responsible for PROGRAM execution and function calls. A stack FRAME contains all the data for ONE function call: its parameters, the return address, and its local variables. Stack-allocated objects are PART of these local variables. |
|