Curated Video
Learn and Master C Programming - declaring static variables inside functions with 'static' keyword in C
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...
Curated Video
Learn and Master C Programming - Using Bit-wise Operators in Code
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...
Curated Video
Learn and Master C Programming - Bit-wise NOT (~) Operator
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...
Curated Video
Learn and Master C Programming - Important Tips for Working with User Input
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...
Curated Video
Learn and Master C Programming - Getting user input using 'scanf'
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...
Curated Video
Learn and Master C Programming - Pointers and Strings: Remove Vowels Example
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...
Programming Electronics Academy
Download and Install PC: Arduino Course 2.3
A walk through of downloading and installing the Arduino IDE (Integrated Development Environment) for PC computers
Curated Video
Learn and Master C Programming - Understanding For Loops in C/C++
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...
Curated Video
Learn and Master C Programming - Find & Replace in Visual Studio
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:...
Curated Video
Learn and Master C Programming - Tabs versus White Space
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...
Curated Video
Learn and Master C Programming - Visual Studio Start Page
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...
Curated Video
Learn and Master C Programming - Where To Go From Here...
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...
Curated Video
Learn and Master C Programming - Quick Find in Visual Studio
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...
Curated Video
Learn and Master C Programming - register' keyword in C
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,...
Curated Video
Learn and Master C Programming - #error' preprocessor directive
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...
Curated Video
Learn and Master C Programming - Using Pointers
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...
Curated Video
Learn and Master C Programming - using 'typepdef' keyword in C
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...
Curated Video
Learn and Master C Programming - volatile' keyword in C
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...
Curated Video
Learn and Master C Programming - Bit-wise OR (|) operator
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...
Curated Video
Learn and Master C Programming - A r Look At How Pointers Work!
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...
Curated Video
Learn and Master C Programming - A Deeper Look At Our First C Program & Compilation Process
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...
Programming Electronics Academy
Mindset: Arduino Course 3.1
Keeping the right mindset when learning technical topics like programming.
Curated Video
Learn and Master C Programming - Bit-wise XOR (^) Operator
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...
Curated Video
Learn and Master C Programming - Section Overview - Preprocessor Directives
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...