This repository is a collection of my C++ programming tutorials and assignments that I completed while learning the language.
It reflects my step-by-step learning process and showcases how I built my programming skills through consistent practice.
The tutorial/ folder contains topic-wise programs that helped me understand the core concepts of C++:
- c1basics β Learned the basics of C++ (syntax, variables, operators, input/output).
- c2statements β Practiced conditional statements (
if-else,switch-case). - c3loops β Explored loops (
for,while,do-while) to repeat tasks. - c4functions β Implemented user-defined functions, recursion, and scope concepts.
- c5patterns β Wrote pattern printing programs to improve logical thinking.
- c6arrays β Worked on 1D & 2D arrays and their applications.
The assignment/ folder contains practice exercises where I applied the concepts I learned:
- assignment-1 to assignment-8 β Covers problems based on basics, statements, loops, functions, patterns, and arrays.
Each assignment was an opportunity to strengthen my problem-solving ability.
- I have learned C++ from scratch through practical coding.
- I can apply concepts like loops, functions, and arrays in real programs.
- My logical thinking and problem-solving skills improved by solving assignments.
- This repository highlights my dedication and consistency in learning programming.
- Studied a concept.
- Wrote example programs under
tutorial/. - Solved problems in
assignment/to test my understanding.