Question: A Very Simple TO DO List Design Using C Programming What is a TODO List? A system where you jot down the tasks you are
A Very Simple TO DO List Design Using C Programming
What is a TODO List?
A system where you jot down the tasks you are going to accomplish. See an example: https://www.wikihow.com/Make-a-To-Do-List
Requirements:
-
A text file must be used for keeping records of the accounts/clients.
-
More than one text file maybe used according to your requirement.
-
You need to use Structures and Arrays to handle the file contents.
Project Plans:
-
Your each TO DO component will be a Structure, holding AT LEAST.
-
Task ID
-
Task Name
-
Task Beginning Time
-
Task Ending Time
-
Anything else (if you want to add).
-
-
When the program starts, uses will see a welcome message, where there will be 3 options:
-
View existing TO DOs (just print the file you read)
-
Add TO DOs (append data into the file)
-
Remove TO DOs: This is a bit tricky. At first, read all the file contents into your structure. Then ask the Task ID from the user and search them into your structure. Write all data into the file, excluding that structure. Thats it!
-
-
You need to make 3 Functions, at least for the components.
-
When the user selects an option (make this using Switch-Case or anything else you like), your system will call the respective function for operation.
Please give the code in C programing & a screenshot of output.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
