// Example 6.1, page 157 // Schaum's Outline of Programming with C++ by John R. Hubbard // Copyright McGraw-Hill, 1996 using namespace std; #include int main() { int n = 33; cout << "n = " << n << endl; // print the value of n cout << "&n = " << &n << endl; // print the address of n return 0; }