c
Buffer Overflow: The Bug That Built the Hacking Industry
What happens when 12 bytes are written into an 8-byte buffer? In C, the extras spill into the next variable and the program never notices. In Rust, the program halts and tells you exactly why. The classic buffer overflow, from the stack to the panic.