Howard Chu @ Symas on Nostr: npub1ar85x…urmzu I don't really get examples like these because nobody would ever ...
npub1ar85xsqez8khukxayneapjf7kspt7txza6qs9srdwzeecfww9reqsurmzu (npub1ar8…rmzu) I don't really get examples like these because nobody would ever write them in real code.
Nobody compares sizeof(s) with sizeof another thing. Nobody really cares about the exact value of sizeof - they only care that they can obtain it, to pass to malloc().
Nobody does multiplication on char literals. That's just nuts.
Shifts that overflow - could happen in real code, ok.
pre- and post-incr of the same var in one expr - just asking for trouble. It's unreadable as-is, why do it?
Nobody compares sizeof(s) with sizeof another thing. Nobody really cares about the exact value of sizeof - they only care that they can obtain it, to pass to malloc().
Nobody does multiplication on char literals. That's just nuts.
Shifts that overflow - could happen in real code, ok.
pre- and post-incr of the same var in one expr - just asking for trouble. It's unreadable as-is, why do it?