Some important keywords in C++
| Keyword | Explanation |
|---|---|
| inline | Used to define functions in header files, often for optimization but rarely used nowdays |
| const | Replaces #define |
| namespace | Sets the context for a file, often std is used for standard libraries such as std::cout |