#include #include using namespace std; int main() { int i = 7; int *p = new int; *p = i; // Stores VALUE of i in where p points to p = &i; // Stores ADDRES of i in p return 0; }