in reply to Re^2: How to access the contents of a specific memory address?
in thread How to access the contents of a specific memory address?
Outputuse Devel::Peek; $num = 5; Dump($num); print $num."\n"; Dump($num);
If you want to know more, read illguts. Someone on perlmonks is bound to know whatever you ask about Perl's C side.SV = IV(0xbf4958) at 0xbf495c REFCNT = 1 FLAGS = (IOK,pIOK) IV = 5 5 SV = PVIV(0x39df74) at 0xbf495c REFCNT = 1 FLAGS = (IOK,POK,pIOK,pPOK) IV = 5 PV = 0x84cb0c "5"\0 CUR = 1 LEN = 4
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to access the contents of a specific memory address?
by pat_mc (Pilgrim) on Jul 30, 2012 at 19:54 UTC | |
by bulk88 (Priest) on Jul 30, 2012 at 20:14 UTC |