1  #include <iostream>
  2  using namespace std;
  3  
  4  int main()
  5  {
  6    int count = 5;
  7    int* pCount = &count;
  8  
  9    cout << "The value of count is " << count << endl;
 10    cout << "The address of count is " << &count << endl;
 11    cout << "The address of count is " << pCount << endl;
 12    cout << "The value of count is " << *pCount << endl;
 13  
 14    return 0;
 15  }