Addresses and Pointers
Every object in the computer has an address
Some of the objects in a C program may be referenced through the address of their location in memory- Expressions like &var, are evaluated to the address of var.
The address operator & cannot be applied to objects that have a temporary location in the memory (explicit constants, compound expressions)
Addresses can be stored in variables of type pointer to...