#include <iostream>
#include <iomanip>

using namespace std;

int main()
{
    volatile unsigned int a = 1;
    volatile unsigned int b = 2;
    volatile unsigned int c = 3;
    volatile unsigned int* temp = &a;
    for(int i = 0; i < 20; ++i)
    {
        cout << (void*)&a << "-" << (void*)&b << "-" << (void*)&c << "-" << (void*)temp << "   " << *temp << endl;
        temp++;
    }
}
