Hi.
Why isn't it possible to 'manually' give a pointer the adress of a variable?
Example:
Code:
int Integer;

int * Pointer;

Pointer = 0x22ff70;

//Instead of: Pointer = & Integer;