Sjmarf@sh.itjust.works to Programmer Humor@programming.dev · 5 months agovoid *sh.itjust.worksimagemessage-square5fedilinkarrow-up14arrow-down10
arrow-up14arrow-down1imagevoid *sh.itjust.worksSjmarf@sh.itjust.works to Programmer Humor@programming.dev · 5 months agomessage-square5fedilink
minus-squarerhpp@programming.devlinkfedilinkarrow-up2·5 months agoActually void* just points to anything, with no regard to the type of that thing. Pointing to the void is more accurately described by NULL pointer.
minus-squareneo@lemy.lollinkfedilinkarrow-up0·5 months agoSo, when I want the void to point back at me, do I have to loop over void* or over NULL? And how many iterations?
minus-squareProgrammer Belch@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up1·5 months agoFor the void to point back at you just dereference the NULL pointer
Actually
void*
just points to anything, with no regard to the type of that thing. Pointing to the void is more accurately described byNULL
pointer.So, when I want the void to point back at me, do I have to loop over void* or over NULL?
And how many iterations?
For the void to point back at you just dereference the NULL pointer