Anti-Patterns

4 articles tagged with "anti-patterns"

Why You Should Never Use 'int' in Modern C

The int type is a portability disaster — its size varies across platforms, causing silent bugs and security vulnerabilities. Use fixed-width types like int32_t instead.

← All Tags