#include int main() { char ch = 'K'; char& refCh = ch; char* p = &ch; refCh = 'Q'; cout << "The reference: " << refCh << endl; cout << "The char itself: " << ch << endl; *p = 'Z'; cout << "The ptr: " << (unsigned int)(p) << endl; cout << "The thing the pointer points to: " << *p << endl; cout << "The char itself: " << ch << endl; p = &refCh; cout << "The ptr: " << (unsigned int)(p) << endl; cout << "The thing the pointer points to: " << *p << endl; cout << "The reference: " << refCh << endl; cout << "The char itself: " << ch << endl; return( 0 ); }