This repository contains beginner-friendly implementations of fundamental data structures and algorithms using C++. It serves as a practice ground for mastering core programming concepts and algorithmic thinking.
- Left Rotation β Rotate an array to the left by one position.
- While Loop β Print numbers from 1 to 5.
- For Loop (Squares) β Print the square of numbers using a
forloop. - Name Printer β Print all names stored in an array using loop traversal.
- Array manipulation (e.g., rotations, traversals)
- Looping constructs (
for,while) - Basic algorithm design in C++
- Clean and modular coding practices
- Foundation for solving coding interview problems