@lawrence@lemmy.world to Programmer Humor@lemmy.ml • edit-29 months 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.world@lawrence@lemmy.world to Programmer Humor@lemmy.ml • edit-29 months agomessage-square36fedilinkfile-text
minus-square@Omega_Haxors@lemmy.mllinkfedilinkEnglish3•9 months 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.