How do I start off creating a computer program that manages a to-do list? I am using Visual Studio C progamming. I have to create a menu-based system that manages tasks.
here is the parameters..
That is, the Todo app manages a list of entries. Each entry consists of: (a) a textual description and (b) a status of either active or completed. The app provides several operations to:
(1) Add a new entry,(2) Edit the description of previously entered entry,(3) Toggle the active/completed status of an entry, (4) Delete an entry(5) Delete completed entries.(6) change the app list display mode to display: (A) All entries(I) Only active entries(C) Only completed entries.
The menu system is best described using a running demo of the app input/output below (whenthe app is started, it loads and displays the saved todo list in todo.txt file, if the list is empty:
To Do
No entry to displayNo active entriesMenu
1. Add Entry2. Edit Entry Description3. Toggle Entry Status4. Delete Entry