Its my C++ learning repository
1 - Tutorial to C++
2 - Variables and basic datatypes
3 - Const keyword
4 - Namespaces
5 - Typedef and type aliases
6 - Arithmetic operators
7 - Type conversion (casting)
8 - User input (cin)
9 - Useful cmath functions
10 - Hypothenuse calculator [TEST]
11 - If statements
12 - Switches
13 - Console calcualtor [TEST]
14 - Ternary operator
15 - Logical operators
16 - Temperature conversion [TEST]
17 - Useful string methods
18 - While loops
19 - Do-while loops
20 - For loops
21 - Break & continue keywords
22 - Nested loops
23 - Random number generator
24 - Random event generator
25 - Number guessing game [TEST]
26 - User defined functions
27 - return keyword
28 - Overloaded functions
29 - Variable scope
30 - Banking system [TEST]
31 - Rock-Paper-Scissors Game [TEST]
32 - Arrays
33 - sizeof() operator
34 - Iterating over Arrays
35 - foreach loop
36 - Pass array to functions
37 - Searching for element in array
38 - Bubble sort and sorting basics
39 - fill() function
40 - Filling array by user input [TEST]
41 - Multidimensional arrays
42 - Quiz game [TEST]
43 - Memory adresses
44 - Pass by [VALUE vs REFERENCE]
45 - Const parameters
46 - Credit card checker [TEST]
47 - Pointers
48 - Null pointers
49 - Tic Tac Toe Game [TEST]
50 - Dynamic variables and arrays
51 - Recursive functions
52 - Function templates
53 - struct
54 - Pass struct as argument(s)
55 - enum
56 - Object Oriented Programming
57 - Constructor
58 - Constructor overloading
59 - Getters and setters
60 - Inheritance