Memory is allocated for a function when the function is
Answers
Answered by
1
when it is called and is defined
Answered by
0
Answer:
defined
Explanation:
Memory is allocated to variable dbl(or var) at compile time in the stack memory. Not correct, it is allocated in run-time, just as all other stack variables. That's the whole point of using a stack. It is allocated when your function is called, in run-time
Similar questions