Top "Pointer-address" questions

delphi pointer address

In Delphi: How do I get the address (0x2384293) a pointer points to? var iValue := Integer; iptrValue := PInteger; implementation procedure …

delphi pointers pointer-address
Getting the address of a pointer

My apologies, I know there are a million questions on pointers, arrays etc. although as basic as this is I …

c++ pointers pointer-address
Assigning a pointer in a struct to a variable

This program is supposed to create a dynamic memory vector. I'm pretty sure I'm using malloc correctly. My real problem …

c pointers vector struct pointer-address
Goto a specific Address in C

How can I JMP to a specific address in C? I want to use goto 0x10080000 This is not working, …

c pointers assembly goto pointer-address