lawrence@lemmy.world to Programmer Humor@lemmy.ml · 9 months agoOk, at some point we made a big mistake.lemmy.worldimagemessage-square39fedilinkarrow-up10arrow-down10
arrow-up10arrow-down1imageOk, at some point we made a big mistake.lemmy.worldlawrence@lemmy.world to Programmer Humor@lemmy.ml · 9 months agomessage-square39fedilink
minus-squaremindbleach@sh.itjust.workslinkfedilinkarrow-up0·9 months agoBut C is worse than C++, because what if you have a pointer to a pointer?
minus-squareUpperBroccoli@feddit.delinkfedilinkarrow-up0·9 months agoAlso it is colder at night than it is outside.
minus-squareolorin99@kbin.earthlinkfedilinkarrow-up0·9 months agoYou can have a pointer to a pointer in c++ too tho?
minus-squareOmega_Haxors@lemmy.mllinkfedilinkEnglisharrow-up0·9 months agoCan you have two pointers pointing at each other?
minus-squareolorin99@kbin.earthlinkfedilinkarrow-up0·9 months agovoid* ptr2 = &ptr1; ptr1 = &ptr2;```
But C is worse than C++, because what if you have a pointer to a pointer?
Eh?
Also it is colder at night than it is outside.
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.