|
| 1 | +# Introduction to C++ |
| 2 | + |
| 3 | +## Plan |
| 4 | + |
| 5 | +The workshop is designed to be delivered over an entire day (including breaks). |
| 6 | + |
| 7 | +| Topic | Time | |
| 8 | +| ------------------------------ | ---------- | |
| 9 | +| Introduction to C and C++ | 30 minutes | |
| 10 | +| C++ language basics (part 1) | 60 minutes | |
| 11 | +| Memory management and pointers | 60 minutes | |
| 12 | +| C++ language basics (part 2) | 60 minutes | |
| 13 | +| Compilation and debugging | 60 minutes | |
| 14 | +| Object-oriented programming | 60 minutes | |
| 15 | +| Making coding more enjoyable | 15 minutes | |
| 16 | + |
| 17 | +## Contents |
| 18 | + |
| 19 | +### Introduction to C and C++ |
| 20 | +* Brief history of C and C++ |
| 21 | +* C++ vs other programming languages |
| 22 | +* The C++ standardisation process |
| 23 | + |
| 24 | +### C++ language basics (part 1) |
| 25 | +* Variables and types |
| 26 | +* Arithmetic, comparison, and logical operators |
| 27 | +* Flow control (if and switch statements; while and for loops) |
| 28 | +* Functions |
| 29 | +* Polymorphism |
| 30 | + |
| 31 | +### Memory management and pointers |
| 32 | +* Arrays |
| 33 | +* Allocation and deallocation |
| 34 | +* Pointers (dereferencing and address-of operators) |
| 35 | + |
| 36 | +### C++ language basics, part 2 |
| 37 | +* I/O streams |
| 38 | +* Strings and vectors |
| 39 | +* Useful third-party libraries |
| 40 | + |
| 41 | +### Compilation and debugging |
| 42 | +* Compilation steps |
| 43 | +* Debugging |
| 44 | +* Other options |
| 45 | + |
| 46 | +### Object-oriented programming |
| 47 | +* Object-oriented design |
| 48 | +* Classes in C++ |
| 49 | +* Access specifiers and inheritance |
| 50 | +* Polymorphism |
| 51 | +* Operator overloading |
| 52 | + |
0 commit comments