#include #include using namespace std; int main() { int i {10}; int *p {&i}; //p holds the address of i. //In other words, p "points to" i. cout << "The value of i is " << i << ".\n"; cout << "The value of i is " << *p << ".\n"; return EXIT_SUCCESS; }