Starting from:
$30

$24

Linked List Homework 1

   Project Goals
The goal of this project is to:
1.    Familiarize students with **linked lists**
2.  Familiarize students with the Visual Studio Code **IDE** and **debugging**.

   Program
In addition to the required program files, you submission should include a makefile. 

Using C++ object oriented programming methods, create a TODO app.  

The program should provide a menu of choices that the user can use to do basic operations on the TODO list such as a) adding a new task, b) delete an task, c) show all tasks, d) remove all tasks, or simply to exit.  

    Executable
An example executable is provided in this repository.

   Submission details
To submit your project, you will have to use git on your VirtualBox installation:
1.    After accepting the assignment invitation, copy the clone URL
2.    Type 
```git clone clone URL```
3.    cd into your new assignment directory
4.    After working on your files
5.    When you’re ready, type the following commands: 
```
git add .
git commit -m “your commit message”
git push
```

More products