Curated Video
Learn and Master C Programming - Passing By Value vs. Passing By Pointer
We will revisit passing parameters to functions to go over differences between passing by value and passing by reference (pointer). This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute...
Curated Video
Learn and Master C Programming - Character Arrays versus Strings
We will learn the main difference between declaring and using character arrays versus strings in C/C++. This clip is from the chapter "Arrays" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we...
Programming Electronics Academy
Interrupt Cautions: Arduino Course 9.5
A highlight of things to consider when using interrupt service routines.
Programming Electronics Academy
We Use Arduino Version .. : Arduino Course 2.2
A walk through of the Arduino IDE version used in the course, and recommendations for getting the most recent version.
Curated Video
Learn and Master C Programming - Bit-wise AND (&) operator
We will walk through an example where we use AND (&) operator to calculate the result of ANDing 4 & 5 together using binary AND operator &. This clip is from the chapter "Let's Talk Binary | Manipulating Bits" of the series "Learn and...
Curated Video
Learn and Master C Programming - Using 'strstr' to search for a substring inside another string
We will continue on the same example from the previous lecture and see how we can use 'strstr' to search for a substring inside our string. This clip is from the chapter "Strings" of the series "Learn and Master C Programming For...
Curated Video
Learn and Master C Programming - Pointers and 'const' Keyword
We will look at the different ways we can combine the word 'const' with pointers and how that impacts the meaning and usage of the pointers as well as the data pointed at. This clip is from the chapter "Pointers" of the series "Learn and...
Programming Electronics Academy
Another Interrupt Example: Arduino Course 9.4
An example of using an interrupt service routine with Arduino.
Curated Video
Learn and Master C Programming - #include': Angle Brackets (<>) versus Double Quotes ("")
In C, the angle brackets ask the C preprocessor to look for a header file in a directory other than the current one. This clip is from the chapter "Preprocessor Directives" of the series "Learn and Master C Programming For Absolute...
Curated Video
Learn and Master C Programming - Pointers and Strings: Beware of Attempting to Modify Read-Only Memory!
We will learn about strings and pointers and how to avoid pointer-related issues like access violation when we try to modify a string that is stored inside read-only (or write-protected) memory. This clip is from the chapter "Pointers"...
Curated Video
Learn and Master C Programming - Working with single-dimension arrays in C/C++
We will see how we can declare and process a single-dimensional array in C/C++. This clip is from the chapter "Arrays" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we will look at how to declare...
Programming Electronics Academy
Change Delay Time, Z Principle: Arduino Course 4.3
Taking a look at the delay() function, and an approach to investigating code.
Curated Video
Learn and Master C Programming - Using 'break' keyword...
We will learn how to use 'continue' keyword in C/C++ with loops. This clip is from the chapter "Conditional Statements" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, learn the syntax to use...
Curated Video
Learn and Master C Programming - Build Menu
You will learn more about building solutions and the output files generated. 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 go...
Curated Video
Learn and Master C Programming - Using 'union' keyword in C
Understand how to declare and use a union and how are they different from structures. This clip is from the chapter "Structures & Unions" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we use...
Curated Video
Learn and Master C Programming - Understanding 'extern' keyword in C
We will go over the need to use 'extern' keyword in our C/C++ programs. This clip is from the chapter "More C Keywords..." of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we look into keywords like...
Curated Video
Learn and Master C Programming - Reading and Displaying Text Files - Part 1
We will learn how to use C File API to handle and process text files in reading mode. This clip is from the chapter "Working with Files and I/O" of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we...
Curated Video
Learn and Master C Programming - Pointers and Arrays
We will learn how pointers and arrays are related and how we can treat array name as a pointer in some situations. This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute Beginners!".In this...
Programming Electronics Academy
Function Example Two: Arduino Course 8.2
A walk through of a User Defined Function in programming.
Programming Electronics Academy
digitalRead in Ardiuno: Arduino Course 4.10
Using digitalRead() to read binary inputs with Arduino.
Curated Video
Learn and Master C Programming - Showing Line Numbers In The Text Editor
We learn how to show the line numbers in the text editor to help us when we review and look at our code. This clip is from the chapter "Walkthrough: Visual Studio IDE" of the series "Learn and Master C Programming For Absolute...
Curated Video
Learn and Master C Programming - Using 'extern' Keyword in our code
We will build an example that shows when and how to use 'extern' keyword in our code. This clip is from the chapter "More C Keywords..." of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we look into...
Curated Video
Learn and Master C Programming - How to declare and use string arrays
The author introduces you to arrays 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 like...
Curated Video
Learn and Master C Programming - Pointer Arithmetic: Working with Character Pointers (Strings)
Learn how we can use pointer arithmetic with strings as well. This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute Beginners!".In this section of the course, we look into what pointers are...