|
|
|
|
|
by CamperBob2
4191 days ago
|
|
You know what causes bugs in C (besides memory leaks)? Complex or clever expressions that don't reveal their semantics at first glance. As an example from elsewhere in the thread: return (x > y) - (x < y);
Quick. What's that do?What will the next person who looks at the code think it does? |
|