Feb 22, 2016 at 4:49pm
In the constructor you are using the size variable before it has been initialized.
You have not defined a copy assignment operator so if are assigning a List object to an existing List object in your program that is also a problem.
Last edited on Feb 22, 2016 at 4:52pm