lawrence@lemmy.world to Programmer Humor@lemmy.ml · edit-23 years agoOk, at some point we made a big mistake.lemmy.worldimagemessage-square36fedilinkarrow-up1308file-text
arrow-up1308imageOk, at some point we made a big mistake.lemmy.worldlawrence@lemmy.world to Programmer Humor@lemmy.ml · edit-23 years agomessage-square36fedilinkfile-text
minus-squareGandalf@kbin.earthlinkfedilinkarrow-up16·3 years agoYou can have a pointer to a pointer in c++ too tho?
minus-squareOmega_Haxors@lemmy.mllinkfedilinkEnglisharrow-up3·3 years agoCan you have two pointers pointing at each other?
You can have a pointer to a pointer in c++ too tho?
Can you have two pointers pointing at each other?
void* ptr2 = &ptr1; ptr1 = &ptr2;```You don’t say.