-
Code Comments: How to Use Them and Why?
What is a common mistake I see coding beginners make? …not putting any or enough code comments. And it’s understandable because when I first learned how to code, I thought code comments were pointless. Why would you put a comment in your code when you can just figure out what the code is doing just…
-
How To Use While Loops in C [C Tutorial]
While loops are so basic and important in programming. In simple terms, they allow your program to execute certain lines of code however many times you want or need. They do this based on whatever condition you set for it. This can be useful if you want your program to restart when it is finished.…
-
How To Use if and Else Statements in C [C Tutorial]
If and else statements are one of the most fundamental programming concepts ever. You find them in almost every programming language and tool. It’s so important for logic and algorithms, which is what makes programs useful in the first place. I will also be covering how to do this with int, char, and char arrays…