Curated Video
Learn and Master C Programming - Arguments of main() function - Part 2
We will see how we can write code to implement two operations on the command-line while handling input errors. This clip is from the chapter "Strings" of the series "Learn and Master C Programming For Absolute Beginners!".In this...
Curated Video
Learn and Master C Programming - Working With Strings - Reviewing Strings in C/C++
We will kick off this section by a quick review of strings in C/C++. This clip is from the chapter "Strings" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we work with strings and string function...
Programming Electronics Academy
Intro to Classes: Arduino Course 8.5
A description of classes in object oriented programming with Arduino.
Programming Electronics Academy
Switch Case Application: Arduino Course 5.8
A demonstration of using a switch-case statement in programming.
Programming Electronics Academy
For Loop Lesson: Arduino Course 5.4
A demonstration of how "for loops" are used in programming.
Programming Electronics Academy
Class to Library Continued: Arduino Course 8.8
A walk through of turing a class into an Arduino code library.
Programming Electronics Academy
Functions Combined into One: Arduino Course 8.4
A walk through of a User Defined Function in programming.
Curated Video
Learn and Master C Programming - Visual Studio File Menu
We will go over the file menu and learn what it does and try out some of its features like loading projects, closing a file and reopening it...etc. This clip is from the chapter "Walkthrough: Visual Studio IDE" of the series "Learn and...
Curated Video
Learn and Master C Programming - Basic C Types Continued
We go over the C basic types again and discuss them in more detail so you become more familiar with them. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C Programming For Absolute Beginners!".In...
Curated Video
Learn and Master C Programming - If...else...Code Example: Checking high blood pressure readings
The author shows you an example that uses several if...else statements and also how to nest if statements using a blood pressure reader function that takes two numbers and gives you back your result as string. This clip is from the...
Curated Video
Learn and Master C Programming - Variadic Functions Overview
We are introduced to the concept of variadic function in C/C++. This clip is from the chapter "Advanced Topics" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we look into advanced topics such as...
Programming Electronics Academy
pinMode, digitalWrite, delay: Arduino Course 4.2
A description of 3 important functions for using Arduino.
Curated Video
Learn and Master C Programming - Comments in C
We will go over comments and commenting out code and the different styles of comments supported by C language. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C Programming For Absolute...
Curated Video
Learn and Master C Programming - Bit-wise Operators Overview
We will look at an overview of the binary operators that we will cover. This clip is from the chapter "Let's Talk Binary | Manipulating Bits" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we look...
Curated Video
Learn and Master C Programming - Using '#define' To Define Symbolic Constants
We will write a program that uses '#define' to define some symbolic constants. This clip is from the chapter "Preprocessor Directives" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we look into...
Curated Video
Learn and Master C Programming - Using Visual Studio Command Prompt to write 'Hello, World' one more time
Learn an easier and slight faster way to build and compile C programs from the command prompt. This clip is from the chapter "Writing our First Program - A 'Hello, World!' Program in C" of the series "Learn and Master C Programming For...
Curated Video
Learn and Master C Programming - Pointers and Strings (2): Printing Out Vowels In a String
We will write a function called PrintVowels to learn how to process strings using pointers and practice with pointer arithmetic and contents of pointers...etc. This clip is from the chapter "Pointers" of the series "Learn and Master C...
Curated Video
Learn and Master C Programming - How To Calculate Array Size in C/C++
Learn how to use the compiler with the help of 'sizeof' operator to calculate the size (number of elements) inside array without having to hard-code this value! This clip is from the chapter "Arrays" of the series "Learn and Master C...
Curated Video
Learn and Master C Programming - What is covered in this course?
A quick overview of what we will cover throughout this course. This clip is from the chapter "Introduction" of the series "Learn and Master C Programming For Absolute Beginners!".In this introductory section, the author helps you jump...
Programming Electronics Academy
PWM Example: Arduino Course 4.8
An example of using Pulse Width Modulation with Arduino.
Curated Video
Learn and Master C Programming - More on Block Scope in C
We will look at an important tip to help you avoid running into compilation issues with some C compilers when declaring and using local variables. This clip is from the chapter "Fundamentals and Basics" of the series "Learn and Master C...
Curated Video
Learn and Master C Programming - Visual Studio Debug Menu
Learn some new concepts about debugging and stepping through code by the end. This clip is from the chapter "Walkthrough: Visual Studio IDE" of the series "Learn and Master C Programming For Absolute Beginners!".In this section we will...
Curated Video
Learn and Master C Programming - Using 'strlen' function to get length of string
We will learn how to use 'strlen' function to get the length of a string in C/C++. This clip is from the chapter "Strings" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we work with strings and...
Programming Electronics Academy
Change the LED Variable: Arduino Course 4.4
Adjusting pin numbers in Arduino sketches and the outcomes.