Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Some low level languages like C support the concept of “stack variables”. These are variables which have their memory allocated on the stack. They only exist in the context of where are created and within sub function calls - but once we exit the “scope” or the function they were created in then they disappear.

...