Do you know any site where I can find information about how to use MS Visual C++.
I have done C programming but trying C++ programming.
Can anybody tell me what are these different types of projects. I have selected 'Win32 Application' and created a souce file with following code
#include<iostream.h>
int main()
{
cout << "hello";
return 0;
}
but I am getting the following Link Error
Linking...
LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol _WinMain@16
Debug/first.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
Any idea why this is occuring.
I have done C programming but trying C++ programming.
Can anybody tell me what are these different types of projects. I have selected 'Win32 Application' and created a souce file with following code
#include<iostream.h>
int main()
{
cout << "hello";
return 0;
}
but I am getting the following Link Error
Linking...
LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol _WinMain@16
Debug/first.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
Any idea why this is occuring.