Gollum@feddit.de to Programmer Humor@programming.dev · 2 years agoI mean it could be righti.imgur.comexternal-linkmessage-square19fedilinkarrow-up1272arrow-down114
arrow-up1258arrow-down1external-linkI mean it could be righti.imgur.comGollum@feddit.de to Programmer Humor@programming.dev · 2 years agomessage-square19fedilink
minus-squareabbadon420@lemm.eelinkfedilinkarrow-up32arrow-down1·2 years agoThe third one is just (x=x+1), because the middle bit is just always false and can be ignored.
minus-squareHotzilla@sopuli.xyzlinkfedilinkarrow-up6·2 years agoWhat if int overflows? Is it still false?
minus-squarerhpp@programming.devlinkfedilinkarrow-up11·2 years agoStill false, thanks to compiler optimizations. Remember that integer overflow is UB. (unless you’re using unsigned int or a programming language which strictly defines integer overflow, possibly as an error) P.S.: Assuming this is C/C++
minus-squarechellomere@lemmy.worldlinkfedilinkarrow-up2·edit-21 year agoNo, because it’s UB, the compiler is free to do whatever, like making demons fly out of your nose
The third one is just (x=x+1), because the middle bit is just always false and can be ignored.
What if int overflows? Is it still false?
Still false, thanks to compiler optimizations. Remember that integer overflow is UB. (unless you’re using unsigned int or a programming language which strictly defines integer overflow, possibly as an error)
P.S.: Assuming this is C/C++
No, because it’s UB, the compiler is free to do whatever, like making demons fly out of your nose