@neauoire i don't think it's bad at all (especially if you have typedef)
What I think is bad about C is, for example, this:
char c = 0x80;
printf("%d", c==0x80);
Top-level
@neauoire i don't think it's bad at all (especially if you have typedef) What I think is bad about C is, for example, this: char c = 0x80; 1 comment
|
@PaniczGodek What's bad about this? (I'm ashamed to say that I do this quite a few times in my own programs..)