#include #include using namespace std; int main() { int i {10}; int *p1 {&i}; //p1 holds the address of i. cout << "The value of i is " << i << "\n"; cout << "The value of i is " << *p1 << "\n\n"; double d {3.14159}; double *p2 {&d}; //p2 holds the address of d. cout << "The value of d is " << d << "\n"; cout << "The value of d is " << *p2 << "\n"; return EXIT_SUCCESS; }