65,208
社区成员
发帖
与我相关
我的任务
分享
#include "stdafx.h"
#pragma comment(linker,"/subsystem:windows /entry:mainCRTStartup")
int main(int argc, _TCHAR* argv[])
{
while(1);
return 0;
}
#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}