This is a simple console-based To-Do List project written in C++.
It allows users to manage tasks using arrays, strings, and basic algorithms.
- Add tasks
- Show all tasks
- Mark tasks as done
- Delete tasks
- Search tasks
- Sort tasks alphabetically
g++ main.cpp -o todo
./todo
g++ main.cpp -o todo.exe
todo.exe
--- SIMPLE TO-DO LIST ---
- Add task
- Show tasks
- Mark task done
- Delete task
- Search tasks
- Sort tasks
- Exit
Choose:
💡 Author: Monier Ayman
📌 Project for practicing C++ fundamentals and problem solving.