Hi, my VC++ 6 is acting wierd. After i try running a few small programs, it gives me this error:
--------------------Configuration: a - Win32 Debug--------------------
Linking...
LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol [email protected]
Debug/a.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
a.exe - 2 error(s), 0 warning(s)
EVEN IF MY PROGRAM IS THIS!
#include <iostream.h>
int main()
{
cout << "Hey";
return 0;
}
--------------------Configuration: a - Win32 Debug--------------------
Linking...
LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol [email protected]
Debug/a.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
a.exe - 2 error(s), 0 warning(s)
EVEN IF MY PROGRAM IS THIS!
#include <iostream.h>
int main()
{
cout << "Hey";
return 0;
}
Comment