Hey guys when I try to build this program I am getting an LNK2019 error, the full error is:
MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup
1>D:\cmpsci122\solution labs\Debug\LinkedList.exe : fatal error LNK1120: 1 unresolved externals
I can't figure out where I'm going wrong and could use a fresh set of eyes
You're trying to build a Windows GUI application ("int WinMain( )") and not a console application ("int main( )"). What you need to do is follow the instructions in this link: http://msdn.microsoft.com/en-us/library/ms235629.aspx