The TODO Application

Write a class ``Todo'' that manages a queue of up to 100 TODO items!

The following instruction will explain step by step how to write such a class.

The idea is to have a queue that should work as a First-In-First-Out (FIFO) stack. This means TODO items should be processed in the order they were entered.


Attributes you need:
(remember: attributes should be private)

The idea is to store the TODO items as strings in the array item[] starting from index 0 (the first item that was entered and the first that will be worked on) up to and including index count-1 (the last item).
This is just one (straightforward) way to implement a FIFO.


Methods you need:
(remember: methods should be public)