Loading...
Functions Explained

Functions Explained

In this lecture we explain functions how they work and how to make them

Primitive Types

Primitive Types

This lecture discusses primitive types and how they work

Arrays

Arrays

This lecture discusses arrays in the C programming language

Multi-Dimensional Arrays

Multi-Dimensional Arrays

This lecture discusses how arrays can have multiple dimensions, you will learn how to create multi-dimensional arrays

Receiving input from the keyboard

Receiving input from the keyboard

This lecture shows you how you can read input from the users keyboard

Pointers And Memory Addresses

Pointers And Memory Addresses

In this lecture you learn all about pointers and memory addresses and how to work with them

Function Pointers And How They Work

Function Pointers And How They Work

In this lecture we make use of function pointers and I explain how you can use function pointers to point to functions i...

Structures And Structure Pointers

Structures And Structure Pointers

Structures are a fantastic feature of the C programming language, they allow you to combine multiple variables into a gr...

Understanding The Preprocessor

Understanding The Preprocessor

In this lecture you are taught all about the preprocessor which runs a compile time language in C

Header Files And Object Files

Header Files And Object Files

This lecture discusses header files and object files and why to use them

If Statements Explained

If Statements Explained

This lecture shows how you can direct code flow from the use of "if" statements

Operators Explained

Operators Explained

This lecture covers operators in the C programming language and how to use them

Loops In C Explained

Loops In C Explained

Loops allow you to repeat an action multiple of times based on a condition. Find out how!

Legacy C What You Need To Know!

Legacy C What You Need To Know!

Here we discuss all about legacy C and things you need to be aware of when using older compilers

Nesting Statements

Nesting Statements

This lecture covers how to nest statements in the C programming language

Global Variables And Positioning

Global Variables And Positioning

This lecture discusses global variables and how the way you position your variables can affect your program

External Variables

External Variables

This lecture explains external variables by using the "extern" keyword

Null Terminators And The Ascii Table

Null Terminators And The Ascii Table

This lecture covers null terminators and the ascii table

Character Arrays Vs Character Pointers

Character Arrays Vs Character Pointers

This lecture discusses the difference between character arrays and character pointers

Typedef Keyword And Creating Types

Typedef Keyword And Creating Types

This lecture shows you how to create your own types in C by using typedef

Booleans Explained

Booleans Explained

This lecture discusses Booleans in the C Programming Language

Sharing Memory With Unions

Sharing Memory With Unions

This lecture shows how you can share memory between variables with the use of unions

Hex And Binary

Hex And Binary

In this lecture you learn all about hexadecimal and binary in C

Writing Comments

Writing Comments

Comments are a great way to tell yourself or a programmer what you did. Learn how now

Automated Building With Makefiles

Automated Building With Makefiles

This lecture shows you how you can automate the building of your program by using a Makefile