抄的一段c代码,在dev c++上编译老提示“ include does not name a t

2025-06-20 13:56:36
推荐回答(3个)
回答1:

这样就好了:

#include
#pragma comment(linker, "/subsystem:windows")
#pragma comment(lib,"user32.lib")
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
MessageBox(NULL,"vvds ","igfhgfhgfhgfhgfhgf",MB_OK);
return 0;
}

回答2:

#include 你少了#

回答3:

12345