#include <iostream>
usingnamespace std;
int main()
{
int number = 10;
cout << number << '\n'; // 10
int *iPoint; // declares a pointer to an integer
iPoint = &number; // point to the memory address where number is stored
*iPoint = 40; // change the value at that address
cout << number << '\n'; // so, magically, number is now 40
}