void main(void)
{
  int x;    // an integer
  int* xp;  // an address of an int
  int y;    // another integer

  x = 4;
  xp = &x;  // xp points to x
  y = *xp;  // get the memory value at 
            // the address stored in xp
}