Please enable JavaScript.
Coggle requires JavaScript to display documents.
(Binding variables to its attributes, allocated/deallocated at the…
-
-
Attributes of variables
-
Address(Memory location)
-
-
-
Aliasing
Refer to the same storage location, x is called an alias of y
To save storage by allowing the data at a particular location to be used differently at different times
-
-
-
-
-
-
-
-
Need for variables
Provide names for storage chunks to store data temporarily during the lifespan of a computer program x=y+z;
Transfer information from one part of the program to another parameters, global varibales
-
-