Comments do not have any function in your C code; it’s the designation you use to tell a compiler to
Read moreLatest Posts
Time Control – Part 12 of C Programming for Beginners
Today’s video covers C’s means for controlling the timing of your code, as well as measuring the execution speed of
Read moreThe Ternary Operator – Part 11 of C Programming for Beginners
C has one ternary operator, which is often referred to as “the” ternary operator. It is a control structure that
Read moreSwitches – Part 10 of C Programming for Beginners
The switch is C’s means of enabling your code to make decisions when there is more than one option. The
Read moreWhile + For Loops – Part 9 of C Programming for Beginners
Loops are an important control structure; they control how many times, or if at all, a certain section of C
Read moreIf / Else Statements – Part 8 of C Programming for Beginners
If statements are the simplest, yet most powerful control structure in a C programmer’s toolbox. They allow you to use
Read moreTask Management – Part 7 of C Programming for Beginners
Most of your time as a C programmer will be spent within C’s aptly named “main” task, but some applications
Read moreLogic Operations – Part 6 of C Programming for Beginners
Boolean logic (value of true or false) is essential for controlling the execution of your program. Today’s video explains what
Read moreMath Operations – Part 5 of C Programming for Beginners
Today’s video is all about math in the C programming language. I cover C’s order of operations, demonstrate the syntax
Read morePointers – Part 4 of C Programming for Beginners
Pointers allow you to read a variable’s location in memory, or change it if desired. This is one of C’s
Read more