#c
Read more stories on Hashnode
Articles with this tag
In this article, I will go over the four storage classes in C: auto, extern, static and register. I will explain how to use them and the specifics of...
I recently made a switch to Emacs and I stumbled upon a "bug" in the Windows OS when it comes to writing portable code in C. I will explain this bug...
In this article, I will show you what structs are and how to effectively use them in your programs. I will go over the following: What are...
In this article, I will explain what pointers are and how to use them. But to understand pointers, we need a quick overview on how a computer...
In this article, I will cover all the main string functions you can use in C. strlen() To get the total length of a string, you can use the...
Here, I will outline the importance of pointers and why we should use them when building programs in C. What is a Pointer? A pointer is a...