Setting Up a Visual Studio ProjectSetting up a C++ Project in Visual Studio. All C++ examples and exercises are done in Visual Studio 2017. |
Introduction to C++ SyntaxIntroduction to using the main function in C++ applications and the start of outputting messags onto the console. |
Creating VariablesUsing basic types (int, float, double, char, bool, etc.) and a first look at using arrays in C++. |
Loops and StatementsCovering For, While and Do-While Loops as well as looking at If, Switch and Try-Catch Statements. |
FunctionsIntroduction to functions in C++, how to create, call and prototype. |
Creating ClassesCreating classes in C++ and creating instances inside a program. |
Introduction to Header FilesIntroduction to Header files and how to make use of multiple files within a C++ project. |
Pointers and Memory ManagementMemory management in C++ and an introduction to Pointers and Referencing. |
Converting Java Banking App to C++Converting a pre-made banking application in Java to a C++ equivalent. This will cover multiple classes in several files. |
C++ Vending MachineCreating a C++ Vending Machine application that covers several aspects of the worksheets. This worksheet does not have any code examples. |