Adding Loops To Our C Programming Toolbox

Why Should We Use Loops? Loops are great tools we use to iterate over a well-known range of numbers. For instance, if we wanted to count from 0 to 100, why should we type out each number when the operation is quite predictable? Using a simple loop, we can do this operation in C like […]
Efficiently Reuse Your Code with Functions in C

What’s Your Mal-Function with C Functions? Get it, because malfunction has function in it… anyways. Functions are a great way to store code that you will frequently use throughout a program. For instance, if we needed to compute our taxes every year, having a function that could do this for in one line of code […]
3 Easy Steps to Setup a C Programming Environment

Learn C Programming – Setting Up a Programming Environment In our first section of Learning C Programming, we’re going to setup a programming environment. First, we’ll need to setup our text editor and terminal. This will all depend on your preferences, but I prefer working in Visual Studio Code (VSCode). If you are just starting out, I […]