65,187
社区成员




#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;
}