In C you can do:
int *p; int a; a = (int)p;
But this won\'t work in C++ "type cast cannot convert from int* to int". I hav