Sgt_choke_n_stroke@lemmy.world to Programmer Humor@programming.dev · 3 years agoThe temptation is always therelemmy.worldimagemessage-square122linkfedilinkarrow-up11.11K
arrow-up11.11KimageThe temptation is always therelemmy.worldSgt_choke_n_stroke@lemmy.world to Programmer Humor@programming.dev · 3 years agomessage-square122linkfedilink
minus-squareQuazarOmega@lemy.lollinkfedilinkarrow-up10·3 years agoAs opposed to immutable variables *confused screaming*
minus-squareEufalconimorph@discuss.tchncs.delinkfedilinkarrow-up3·edit-23 years agoint const golden = 1.618; int* non_constant = (int*)&golden; golden = 1.61803399; Casts are totally not a danger that should require a comment explaining safety…
As opposed to immutable variables
*confused screaming*
Or mutable constants…
int const golden = 1.618; int* non_constant = (int*)&golden; golden = 1.61803399;Casts are totally not a danger that should require a comment explaining safety…