LNK2019:函数__tmainCRTStartup中引用了未解析的外部符号_main

时间:2013-12-22 21:25:49

标签: c++

#include <windows.h> 

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine,nShowCmd)
{
    MessageBox(NULL, L"Hello World!", L"Just another Hello World program!", MB_ICONEXCLAMATION | MB_OK);
    return 0;
}

学习c ++入门教程,无法获得第一个hello world示例进行编译。

使用visual studio express 2012.我所做的就是创建一个新项目并将其复制到替换tmain函数中。

请有人知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

在标准C ++程序中,您必须具有main函数,因此程序知道从哪里开始

int main()
{
   return 0;
}

也许尝试另一个教程。这个看起来不错。 http://blogs.msdn.com/b/devschool/archive/2013/01/08/writing-your-first-c-program-using-visual-studio-2012.aspx