An open API service indexing awesome lists of open source software.

https://github.com/dibyadyutidas/cpp

c++ programs
https://github.com/dibyadyutidas/cpp

cpp opp programming

Last synced: 6 months ago
JSON representation

c++ programs

Awesome Lists containing this project

README

          

## ๐Ÿ“ Repository: cpp

### ๐ŸŽฏ Goal
A hands-on, colorful journey through modern C++ programmingโ€”from basics to OOP!

### ๐Ÿ“š Topics Covered
- ๐Ÿงฑ Basics: Variables, I/O, Loops, Conditions
- ๐Ÿงช Data Types & Operators
- ๐Ÿ” Functions & Recursion
- ๐Ÿงต OOP: Classes, Objects, Inheritance, Encapsulation
- ๐Ÿ” Abstraction, Polymorphism, Overloading
- ๐Ÿงฎ Type conversion, typedef, const usage
- ๐Ÿ“˜ Final notes in markdown format

### ๐Ÿ—‚๏ธ Folder Overview
```
๐Ÿ“ imp โ†’ Important basic C++ programs
๐Ÿ“ datatype/primitive โ†’ Primitive type examples
๐Ÿ“ operator โ†’ All C++ operators
๐Ÿ“ functioncall&recursion โ†’ Call by value, reference, etc.
๐Ÿ“ oop โ†’ Full Object-Oriented Concepts
๐Ÿ“ string โ†’ String handling
๐Ÿ“ variable_constant โ†’ Const, typedef, etc.
c++.md โ†’ Final C++ notes
```
## ๐Ÿ“ฅ Clone the Repository

```bash
git clone https://github.com/DibyadyutiDas/cpp.git
cd cpp
```

### ๐Ÿš€ Compile & Run
```bash
g++ filename.cpp -o output
./output
```

---