Beginner Tutorials:
C++ Beginner Tutorial 1 - IDE instillation, project setup, and basic input/output.
C++ Beginner Tutorial 2 - Functions
C++ Beginner Tutorial 3 - Creation of a calculator. Variables (int vs float), conditional branches, commenting code.
C++ Beginner Tutorial 4 - If statements, separating function deceleration and implementation.
C++ Beginner Tutorial 5 - Boolean variables and logical operators.
C++ Beginner Tutorial 6 - More logical operators and practice with if statements.
C++ Beginner Tutorial 7 - Into to memory, as well as additional variables types (float, long, double). Scope visibility.
C++ Beginner Tutorial 8 - Introduction to arrays, chars, and strings
C++ Beginner Tutorial 9 - For and while loops, using an array of char.
C++ Beginner Tutorial 10 (Cap-Stone String Operations) - String manipulation functions including reverse string, count characters, and remove spaces. See code template and solution.
Template: main_template.cpp
Solution: main_templateSolution.cpp
Power Point: Null Terminated Strings and Project