// address2.cc  P. Conrad for CISC181 06S  02/20/06

#include <iostream>
using namespace std;

int main(void)
{
  char s[] = "Hello World!";

  int x=42;

  char t[] = "CISC181";

  int y=-4;

  char u[] = "udel";

  int z=65;


  cout << "s=" << s << endl;
  cout << "x=" << x << endl;
  cout << "t=" << t << endl;
  cout << "y=" << y << endl;
  cout << "u=" << u << endl;
  cout << "z=" << z << endl;

  cout << "&s=" << &s << endl;
  cout << "&x=" << &x << endl;
  cout << "&t=" << &t << endl;
  cout << "&y=" << &y << endl;
  cout << "&u=" << &u << endl;
  cout << "&z=" << &z << endl;

  cout << "sizeof s=" << sizeof s << endl;
  cout << "sizeof x=" << sizeof x << endl;
  cout << "sizeof t=" << sizeof t << endl;
  cout << "sizeof y=" << sizeof y << endl;
  cout << "sizeof u=" << sizeof u << endl;
  cout << "sizeof z=" << sizeof z << endl;


  return 0;

}

