#c
2 articles about c
Filter by Topic
All#advanced#allocation#associated-types#beginners#blanket-implementations#borrowing#bounds#box#c#cache#closures#code-duplication#collections#concurrency#dangling-pointer#data-races#deadlock#dispatch#drain#drop#dynamic-dispatch#embedded#fnmut#gc#generics#heap#higher-order-functions#io-drivers#iterators#library-design#lifetimes#memory#monomorphization#object-safety#operators#optimization#ownership#performance#plugins#retain#rust#simd#sized#stack#str#string#supertraits#trait-bounds#trait-coherence#traits#type-safety#unsized#vec
rustAugust 15, 2025
Deadlocks in C vs Rust: What Does Rust Really Prevent?
Deadlocks aren't prevented by compilers—but Rust adds safety guarantees that make writing deadlock-prone code harder. Here's how it compares to C.
rustApril 11, 2025
C Gives You Control, But at What Cost?
C avoids garbage collection and gives manual memory control, but opens the door to dangerous bugs. Explore real-world memory issues and why they matter.