0 votes
in C Plus Plus by
Where is the auto variables stored in C Language?

1 Answer

0 votes
by

Auto variables can be stored anywhere, so long as recursion works. Practically, they‘re

stored on

the stack. It is not necessary that always a stack exist. You could theoretically allocate function

invocation records from the heap.

Related questions

0 votes
asked Mar 10, 2020 in C Plus Plus by rahuljain1
0 votes
asked Jan 11 in C Plus Plus by GeorgeBell
...