In more ornate but still realistic cases, things become worse:
int *(*pfp)();
https://www.bell-labs.com/usr/dmr/www/chist.html
@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);
@PaniczGodek What's bad about this? (I'm ashamed to say that I do this quite a few times in my own programs..)
@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);