Local Variables
Local variables are used in procedures to store temporary information
- relevant for lifetime of that procedure only
In high level languages, allocation of memory for such local variables is carried out at declaration/initialisation time
When the procedure finishes, the used memory is restored
How? (see the book, page 138, also A.6)