#include <iostream>
using std::cout;
using std::endl;
int main()
{
int *a = new int();
*a = 13;
cout << *a << " : " << a << endl;
void *b = static_cast<void*>(a);
cout << " : " << b << endl;
int *c = static_cast<int*>(b);
cout << *c << " : " << c << endl;
return 0;
}
/*
run:
13 : 003F4FB0
: 003F4FB0
13 : 003F4FB0
*/