Category: Uncategorized

  • 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.…

    Read More

  • 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…

    Read More

  • How To Display Info and Data in C [C Tutorial]

    Displaying info and data or outputting to a console is the most helpful thing you can learn when learning a new language. It gives you feedback on what’s happening in your program. Without this, you will just run your program and not know what is going on. That kinda defeats the purpose of programming haha.…

    Read More