// demoAddress1.cc    02/20/2007
// P. Conrad for CISC181, Spring 2007
// illustrate addresses on the stack

#include <iostream>
using namespace std;
int main()
{
  // declare three variables, with arbitrary names

  int feet;
  double cheese;
  float balloon;


  // print out their addresses

  cout << "&feet    =" << &feet << endl;
  cout << "&cheese  =" << &cheese << endl;
  cout << "&balloon =" << &balloon << endl;


  return 0;
}



