Today's Featured Blunder: Buffer Overflow 9
When you think you can just increment the counter and be done with it, think again.
Here's the offending code: int overflow = 0; overflow = overflow + 1;
int overflow = 0; overflow = overflow + 1;
Result: SEGMENTATION FAULT