I know the BASICS of pointers, but I'm just playing around ---and wondered;
if the value of memory location of A below is 341576016 how can I display that in pascal?
I've tried ABSOLUTE and did get a 7 digit value back, but I don't know if that is valid.
If not in pascal, how about inline ASM?
AGAIN...I'm just goofing around. Not trying to program anything
Thanks
var
A:Integer;
A_Ptr:PInteger;
begin
A:=77;
A_PTR:=@A;