23
DecemberC++ Understanding Scopes
In this lecture you learn all about scopes in a C++ program
23
DecemberC++ Basic Operators
Here you learn about operators in C++
23
DecemberUsing statements, comparison operators and logical operators
In this lecture we discuss statements and operators in the C++ Programming Language
23
DecemberComments
Learn in this lecture how to write informative comments in your code for yourself and other programmers working on your...
23
DecemberHeader files, the preprocessor basics and function declarations
In this lecture you learn about header files in C++ and why to use them
23
DecemberUsing The Linker
In this lecture you will learn how to use the linker which will allow you to compile multiple source files to create one...
23
DecemberNamespaces
In this lecture you will learn all about namespaces in C++ and see how they can help you write clean code
23
DecemberReceiving input from the keyboard
In this lecture you will learn how to receive input from the keyboard
24
DecemberArrays
In this lecture you learn all about arrays in C++
24
DecemberStrings And How To Use Them
In this tutorial you learn all about Strings in C++
24
DecemberVector Basics
C++ vector basics, in this lecture you learn all about vectors in C++
24
DecemberReading And Writing A File
In this lecture you will learn how to read and write files
24
DecemberUnderstanding Enumerations
In this lecture you will learn all about enumerations in C++
24
DecemberMakefiles
In this lecture you learn how to create make files which allow you to automate the building of your projects
24
DecemberWorking With Structures
In this lecture you learn all about structures in C++
24
DecemberUnderstanding The Heap And The Stack
In this lecture you will learn all about the heap and the stack and the difference between them
24
DecemberWorking with references and pointers
In this lecture you will learn about references and pointers in C++
24
DecemberWhat is Object Oriented Programming?
In this lecture you will learn what object oriented programming is
24
DecemberUnderstanding casting
In this lecture you learn all about casting in C++
24
DecemberWorking With Classes
In this lecture you will learn how to work with classes in C++
24
DecemberCreating Libraries
In this lecture you learn how to create libraries which allow you to share your functionality with other developers
26
DecemberIntroduction
26
DecemberSetting Up Android Studio
In this lecture we setup android studio which is what we will use to develop your application
26
DecemberCreating Your First Android Application
In this lecture you will learn how to crate your very first android application, it will be a simple application that ou...
26
DecemberDesigning The Calculator
Here we design the actual calculator we will be making