Preface
Welcome to C++ Base Knowledge! This repository contains my very first C++ code lines
This is a learning journey, so you'll find simple, clean, and well-commented code throughout. The goal is to build a solid foundation for more advanced C++ projects in the future.
Feel free to explore the code, learn along with me, and contribute if you have suggestions!
If people use my stuff in any YouTube videos or anything else, I would be happy if you credited me in the video or something.
Project Structure
6. Fundamental Types
Learn about the basic data types in C++ such as int, float, double, char, bool, and how to use them.
View Markdown9. if and else
Understand conditional statements in C++ to control program flow with if, else if, and else.
View Code10. Switch
Learn how to use the switch statement in C++ for multiple conditional branches.
View CodeNotes
- This is my first C++ repository, focused on learning and experimentation.
- All code is fully commented for clarity.
- Future updates will include more complex topics like loops, functions, arrays, and classes.