Computer Science, asked by Akshatvaya3188, 1 year ago

Memory is allocated for a function when the function is

Answers

Answered by firstviewer
1

when it is called and is defined

Answered by sahil59565
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