Compiled Languages¶
C , C++ , Rust , Go , Java , Kotlin — compile-to-native/binary languages that don't mess around. These are the performance kings where memory management is your responsibility , system programming is the default , and the speed makes Python blush. Start here if you're building tools that need to be fast or poking at binaries where understanding the compiled output matters more than the source
what you'll find here¶
- C — Pointers , memory management , system calls , the language that runs the kernel
- C++ — OOP , RAII , STL , template metaprogramming
- Rust — Ownership , borrowing , lifetimes , fearless concurrency
- Go — Goroutines , channels , interfaces , the cloud native favorite
- Java — JVM , bytecode , enterprise patterns , Android development
- Kotlin — Modern JVM , coroutines , Android-first design
related¶
- Reverse Engineering — understanding compiled binaries
first topic -> c.md