-
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…
-
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.…
-
How To Use Data Types [C Tutorial]
I decided to start a programming series teaching you all the prerequisites needed to build your first app! In my programming guide, I mentioned the following prerequisites: I’ll cover all of these programming in concepts in C, which is a very classic language to learn. This week’s video will be about data types in C.…