I'm having this problem with unresolved externals that really preventing me from......enjoying life. It is with the specific code that is posted below, and it's something that has taken a lot of points out of an in-class test I otherwise excelled on. I tried asking my professor what could possibly be wrong with it when everything looks great logically and he is just telling me that I need to spend hours "just working through it". I literally haven't a clue what is wrong with the following code and I've had this recurring problem for 3 weeks now and I've searched every internet resource, got banned from Stack Overflow, and have no other way of getting help except here. I'm pretty much on the verge of emotionally breaking down because of this single issue.
note: this CPP file uses a header file that has been provided by the professor which basically makes the Node struct Item & Next private data and uses the getItem(), getNext(), setItem(), and setNext() functions to access them. I don't want to post it because it is too much code for one question imo but I'll post it if requested to.
You seem to be compiling your project as a CRT one rather than a native console app. You can make a new empty project and it should work, or go into the settings and change that option.
I don't understand. When I was originally prompted to create a new project, I made it a Win 32 Console Application and checked the boxes for "Console application" and "empty project".
When I was originally prompted to create a new project, I made it a Win 32 Console Application
This is the issue. You have to make an Empty Project and not a Win32 Console Project. The people at Microsoft are trying to abduct your programming and lock you to their platform.
Thanks LB that solved the unresolved externals problem. I'm now getting a LNK 1561 error about not setting up an entry point but after quickly looking it up, it's because I didn't write a main function. I think this is good.....