Pointer
Alright well I've looked around and I can't get a good definition of a pointer for some reason. I've seen that a pointer gets it's space allocated at runtime. Is that true? For example, if I have
then lpText doesn't get it's size until I run my program that will push lpText onto the stack for my MessageBoxA correct? Thanks a lot, really need that cleared up.
Code:
lpText equ offset text ;set a pointer to the offset (location) text .data text db "Pointers are fun!", 0
.