我有以下链接器错误,我怀疑这与正在使用的链接器有关,但我似乎不知道这个问题的来源。
[Linker error] undefined reference to `WinMain@16'
我在Windows Vista Professional机器上使用Dev C ++工作
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
char * pointarrty = "234";
int a = 0;
system("PAUSE");
return EXIT_SUCCESS;
}