Search found 1 match

by JeremyLeach
Sat May 04, 2019 11:58 am
Forum: General Discussion
Topic: Structures
Replies: 3
Views: 3872

Re: Structures

A wild guess is that you're referring to microcontrollers. In general the programming language has a concept of a 'stack', and local variables used within functions are saved to the stack every time the recursive function calls itself. So because memory is precious on microcontrollers compared to PC...