Hi, I have to write a code which should allow to append and item to a list. That is FIFO Logic, First In First Out, but I cannot think of anything of that kind actually.
I mean, I should run the list until the last pointer, and then make it point to the new object. The only thing that comes in my mind is to write a LIFO list and then reverse it, but I bet there could be something better. University Exam tomorrow: sorry for all these questions!
Any Idea?