This repository contains my beginner-level C++ console programs. All tasks are implemented using clean and simple C++ code.
Finds the maximum element in an array.
Calculates the sum of all elements in an array.
Reverses a given string (including spaces).
Counts how many even numbers are in an array.
Counts the number of vowels (a, e, i, o, u) in a string (case-insensitive).
Each folder contains a main.cpp file.
Compile: g++ main.cpp -o app
Run: ./app
(Programs are also tested using Visual Studio on Windows.)
Each program was tested with:
- normal inputs
- edge cases (empty input, zero, negative numbers)
- strings with spaces (where applicable)
Example test (task04_count_even):
Input: 5 1 2 3 4 5
Expected output: 2
- C++
- STL (basic usage)
- Console applications
Beginner C++ developer
Open to small freelance tasks and learning projects.