how to compile this "hello world" program?
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
I compiled this short "Hello World" program in Visual Studio 2017 and failed. I used console type of project:
#include int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
::MessageBox(NULL, _T("Hello World"), _T("MFC Programming"), MB_OK);
}after changed to Windows type with MFC static linked configuration, it still failed. I can not find the right configuration for this short program in Visual Studio 2017.
diligent hands rule....