#include "stdafx.h"
#include
#include
using namespace std;
DWORD WINAPI dThread(LPVOID lpParameter)
{
for(int i=0; i<100; i++)
{
cout << i << endl;
}
return 0;
}
int _tmain(int argc, _TCHAR* argv[])
{
HANDLE hThread = CreateThread(NULL, 0, dThread, NULL, 0, 0);
char cNum;
cin >> cNum;
return 0;
}
注意要使用mfc库 不要使用标准库