This is tutorial for C++. Containing notes and example code on basic concepts used in C++. The purpose of this tutorial is to teach users C++ starting with basic concepts or to help users relearn C++.
Guide -- Start With:
- Intro.cpp - output, comments, variable types
- Strings.cpp - concatenation, length, access/C-style strings
- Math.cpp - algebra, input, compare, min/max, cmath
- Loops.cpp - conditionals, switch, while/for/for-each loop
- ERP.cpp - enums, references, pointers
- Functions.cpp - function, method overload, pass reference, recursion
- OOP1.cpp - access specifiers, constructors, objects
- OOP2.cpp - private attribute, getter/setter method
- OOP3.cpp - inheritance
- OOP4.cpp - polymorphism
- Headers Directory - .cpp & .hpp classes
Information gathered from https://www.w3schools.com/