I think you should learn C.
Well, rather than (just) learning C, you should be reading K&R2.
Here's a laundry list of what K&R2 teaches you about:
- C
- Sorting
- Binary search trees
- Hash tables
- Memory allocation algorithms
- The Von-Neumann flat-memory machine architecture
- Systems programming (
wcis---or can be made---surprisingly complex) - Interfacing with the kernel
When you truly "get" C, you also have easy access to the bare metal; it becomes much easier to get at the machine-native call stack. Once you see the similarity between function pointers, if-then-else blocks, "goto" and "return", it becomes much easier to understand how buffer overflow exploits work.
Learning C is a good thing. Not because it automatically teaches you everything about how programs work, but because it makes you gravitate towards that knowledge.
