I have a few months worth of C++ knowledge under my belt, and have been able to troubleshoot my code before, but I came back to VS.Net after a brief hiatus, and, to make a long story short, I cannot figure how this bit of could be generating errors:
Here's what it spits out:
I've been searching various forums for some clues but haven't turned up anything yet. Anyone have any idea as to why I would be getting these from these? At this point, any and all theroies will result in my undying gratitude.
Code:
#include <iostream>
using namespace std;
int main()
{
std::cout<<"Cliche Statement Here"<<endl;
}
Here's what it spits out:
Code:
LIBCD.lib(wincrt0.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup
Debug/Test.exe : fatal error LNK1120: 1 unresolved externals
I've been searching various forums for some clues but haven't turned up anything yet. Anyone have any idea as to why I would be getting these from these? At this point, any and all theroies will result in my undying gratitude.