https://github.com/kauefraga/learning-cpp
🔥 Learning a general-purpose language (c++).
https://github.com/kauefraga/learning-cpp
cplusplus cpp learn learning
Last synced: 6 days ago
JSON representation
🔥 Learning a general-purpose language (c++).
- Host: GitHub
- URL: https://github.com/kauefraga/learning-cpp
- Owner: kauefraga
- License: mit
- Created: 2023-06-24T16:39:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-01T00:00:50.000Z (about 3 years ago)
- Last Synced: 2025-10-14T01:02:39.335Z (9 months ago)
- Topics: cplusplus, cpp, learn, learning
- Language: C++
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> Here are the contents i have learned about the c++ programming language.
## ⬇️ Getting started
1. Clone the repository
2. Compile the source files
3. Run it
```bash
git clone https://github.com/kauefraga/learning-cpp.git
cd learning-cpp
# You will need to compile everything
```
## 📚 Learned
I learned from those resources: [C++ full course by Bro Code](https://youtu.be/-TkoO8Z07hI) and [Learn C++](https://www.learncpp.com).
- [Primitive types](https://www.learncpp.com/cpp-tutorial/introduction-to-fundamental-data-types)
- [Variables](https://www.learncpp.com/cpp-tutorial/variable-assignment-and-initialization)
- [Constants](https://www.learncpp.com/cpp-tutorial/const-variables-and-symbolic-constants)
- [Typedef](https://www.learncpp.com/cpp-tutorial/typedefs-and-type-aliases)
- [Type casting](https://www.learncpp.com/cpp-tutorial/introduction-to-type-conversion-and-static_cast)
- [Namespaces](https://www.learncpp.com/cpp-tutorial/naming-collisions-and-an-introduction-to-namespaces)
- [Operators](https://www.learncpp.com/cpp-tutorial/introduction-to-literals-and-operators)
- [If statements](https://www.learncpp.com/cpp-tutorial/introduction-to-if-statements)
- [Ternary operator](https://www.programiz.com/cpp-programming/ternary-operator)
- [String](https://www.learncpp.com/cpp-tutorial/introduction-to-stdstring)
See the source code at [`src`](src/).
## 🛠 Technologies
- [C++ environment for Windows](https://www.mingw-w64.org) - Created to support the GCC compiler on Windows systems.
- [C++](https://en.wikipedia.org/wiki/C%2B%2B) - A multi-paradigm and general-purpose programming language that performs well.
## 📝 License
This project is licensed under the MIT License - See the [LICENSE](https://github.com/kauefraga/learning-cpp/blob/main/LICENSE) for more information.
---