Browsing Tag
c
25 posts
Bitmasks are not so esoteric and impractical after all…
So an overly flashy title from one of my articles six years ago finally bit me in the…
Understanding and Fixing “Object Reference Not Set to an Instance of an Object” in C#
Introduction One of the most common and frustrating errors that C# developers encounter is the infamous Object reference…
Run your program in the kernel space with eBPF
Hi there! Have you heard about eBPF? eBPF is not a new technology, but its usage has been…
Using typedef
typedef is one of things that I can never look back from. Essentially, it allows to alias existing…
500M Speed Test : C <- Vs -> Rust
Hey guys, it’s Amir from Bek Brace yet again with another speed test between C and Rust programming…
Declaring Multiple Variables in a “for” Loop Initialization Clause
Introduction As you know, the syntax of the for statement in C and C++ is: for ( init-clause…
Cracking the LeetCode 905. Sort Array By Parity By Nilesh
LeetCode .905 Sort Array By Parity : Hey there, coding enthusiasts! Welcome back to another exciting coding session.…
How are threads created in Linux x86_64
Introduction So I was trying to use atomics in C. Got a little working example. // multithrd.c #include…
The Art of Clean Code: Mastering the Betty Style 🧑🏾💻
Introduction When it comes to developing software in any programming language, adhering to a consistent coding style is…
Guide for starting out C and C++ Programming in Visual Studio Code
As Visual Studio Code is one of the most used code editor, beginner in C and C++ programming…