https://github.com/dibyadyutidas/cpp
c++ programs
https://github.com/dibyadyutidas/cpp
cpp opp programming
Last synced: 6 months ago
JSON representation
c++ programs
- Host: GitHub
- URL: https://github.com/dibyadyutidas/cpp
- Owner: DibyadyutiDas
- License: mit
- Created: 2025-06-11T05:11:31.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-06-11T17:15:45.000Z (6 months ago)
- Last Synced: 2025-06-11T19:06:44.988Z (6 months ago)
- Topics: cpp, opp, programming
- Language: C++
- Homepage:
- Size: 58.6 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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
```
---