#computer-science
Read more stories on Hashnode
Articles with this tag
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 explain what pointers are and how to use them. But to understand pointers, we need a quick overview on how a computer...
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...
In this article, I will explain how to dynamically allocate memory in C. malloc() This function allows us to dynamically allocate memory. This...
What is Recursion In Computer Science, recursion is a method in which a function calls itself. We can use recursion to solve many different problems...
What is Big O Notation? In Computer Science, Big O Notation is used to describe the performance of an algorithm. In other words, how well will this...