#include using namespace std; int main() { int x = 2; int* x_ptr = &x; cout << "The memory location of x is: " << x_ptr << endl; return 0; }