Instructional Video2:45
Curated Video

Learn and Master C Programming - declaring static variables inside functions with 'static' keyword in C

Higher Ed
We will learn how to make a variable 'static' in C and why we need to use static variables. This clip is from the chapter "More C Keywords..." of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we...
Instructional Video5:19
Curated Video

Learn and Master C Programming - Using Bit-wise Operators in Code

Higher Ed
We will write some C code together using Visual Studio to learn how we can manipulate bits in C/C++. This clip is from the chapter "Let's Talk Binary | Manipulating Bits" of the series "Learn and Master C Programming For Absolute...
Instructional Video0:39
Curated Video

Learn and Master C Programming - Bit-wise NOT (~) Operator

Higher Ed
We will walk through an example where we use NOT(~) operator to flip a number using Negation binary operator ~. This clip is from the chapter "Let's Talk Binary | Manipulating Bits" of the series "Learn and Master C Programming For...
Instructional Video6:10
Curated Video

Learn and Master C Programming - Important Tips for Working with User Input

Higher Ed
This video simply gives you some hints and tips when working with and parsing user input from the command-line. This clip is from the chapter "Working with User Input" of the series "Learn and Master C Programming For Absolute...
Instructional Video6:10
Curated Video

Learn and Master C Programming - Getting user input using 'scanf'

Higher Ed
This lecture will show you how to receive user input and how you can get into problems with 'scanf'. This clip is from the chapter "Working with User Input" of the series "Learn and Master C Programming For Absolute Beginners!".A quick...
Instructional Video4:02
Curated Video

Learn and Master C Programming - Pointers and Strings: Remove Vowels Example

Higher Ed
We will look at how we can use pointers to manipulate strings by implementing a function that removes all vowels from a given string. This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute...
Instructional Video7:09
Programming Electronics Academy

Download and Install PC: Arduino Course 2.3

Higher Ed
A walk through of downloading and installing the Arduino IDE (Integrated Development Environment) for PC computers
Instructional Video3:12
Curated Video

Learn and Master C Programming - Understanding For Loops in C/C++

Higher Ed
We will look at the ‘for’ loop syntax and dissect its parts to understand how it executes and become familiar with it. This clip is from the chapter "Loops, Jump keywords & Control Flow" of the series "Learn and Master C Programming For...
Instructional Video1:50
Curated Video

Learn and Master C Programming - Find & Replace in Visual Studio

Higher Ed
We will look at the Find & Replace feature of Visual Studio which allows you to search text inside your code files, project or solution and replace exact matches with new strings of your choice This clip is from the chapter "Walkthrough:...
Instructional Video5:22
Curated Video

Learn and Master C Programming - Tabs versus White Space

Higher Ed
We will go over the differences between tabs versus spaces when using white space and learn why you should be using spaces instead of tabs and also learn how to turn TAB keys into spaces from Tools | Options menu. This clip is from the...
Instructional Video1:17
Curated Video

Learn and Master C Programming - Visual Studio Start Page

Higher Ed
A quick overview of the start page to understand what it does and how to use it. 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...
Instructional Video2:00
Curated Video

Learn and Master C Programming - Where To Go From Here...

Higher Ed
The author lays down the path for further steps to take after this course is completed. This clip is from the chapter "Where To Go From Here..." of the series "Learn and Master C Programming For Absolute Beginners!".In this section, we...
Instructional Video2:47
Curated Video

Learn and Master C Programming - Quick Find in Visual Studio

Higher Ed
We will look at the Quick Find feature of Visual Studio which allows you to search text inside your code files and locate the exact match of your search string. This clip is from the chapter "Walkthrough: Visual Studio IDE" of the series...
Instructional Video2:30
Curated Video

Learn and Master C Programming - register' keyword in C

Higher Ed
Look at how 'register' keyword can be used and when to use it. 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 auto,...
Instructional Video0:59
Curated Video

Learn and Master C Programming - #error' preprocessor directive

Higher Ed
We look at '#error' directive and how it can be used with a simple example. 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...
Instructional Video6:36
Curated Video

Learn and Master C Programming - Using Pointers

Higher Ed
We will jump into Visual Studio to apply the stuff we learned in previous lecture and write some code to see pointers in action. This clip is from the chapter "Pointers" of the series "Learn and Master C Programming For Absolute...
Instructional Video4:09
Curated Video

Learn and Master C Programming - using 'typepdef' keyword in C

Higher Ed
We will learn how to use 'typedef' keyword to introduce new types to the compiler. 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...
Instructional Video1:55
Curated Video

Learn and Master C Programming - volatile' keyword in C

Higher Ed
Look at when 'volatile' keyword can be used in C and what it does when used. 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...
Instructional Video0:54
Curated Video

Learn and Master C Programming - Bit-wise OR (|) operator

Higher Ed
We will walk through an example where we use OR (|). 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 into bit...
Instructional Video1:50
Curated Video

Learn and Master C Programming - A r Look At How Pointers Work!

Higher Ed
We will look at how pointers actually work in C/C++. 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 and what...
Instructional Video8:09
Curated Video

Learn and Master C Programming - A Deeper Look At Our First C Program & Compilation Process

Higher Ed
Here, we go over what we learned in this section and to reflect on what we did in the last 3-4 videos, so that we get a better understanding of it. This clip is from the chapter "Writing our First Program - A 'Hello, World!' Program in...
Instructional Video2:26
Programming Electronics Academy

Mindset: Arduino Course 3.1

Higher Ed
Keeping the right mindset when learning technical topics like programming.
Instructional Video0:47
Curated Video

Learn and Master C Programming - Bit-wise XOR (^) Operator

Higher Ed
We will walk through an example where we use XOR (^) operator to calculate the result of XORing 4 ^ 5 together using binary XOR operator ^. This clip is from the chapter "Let's Talk Binary | Manipulating Bits" of the series "Learn and...
Instructional Video0:57
Curated Video

Learn and Master C Programming - Section Overview - Preprocessor Directives

Higher Ed
Quick introduction and overview. 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 #define directive and its uses to define...