Hi there, I keep getting an error message Unresolved External Symbol. I have no idea where to go from here. Any suggestions would be great, thank you! The Node.cpp file is my biggest issue. These are the instructions where I am stuck on. 'Assign values to head and tail’s “data” attribute. Then make head “point to” tail. In order to test that head correctly points to tail, use the getNextPtr() function and store the result in nodePtr. Write cout statements to verify the nodePtr is indeed pointing to tail.'
You likely did not link the program correctly. what compiler are you using? In Visual C++ you will need to create a project. In gcc see for example http://matrixprogramming.com/2008/03/compilelink
I'm using Express 2010. It brings up an error about the getNextPtr but I don't know how to declare it in Node.CPP. That link you posted is useless unfortunately. :/
I got the code to compile but it is not outtputing what I want. In my last cout statement it is not outputting correctly. Could anyone tell me why? I need to output cout statements to verify the nodePtr is indeed pointing to tail. How do I go about doing this? Thanks in advance!