在本地DevC中运行出现一行奇怪的报错
报错:

32 2 C:\Users\Administrator\Desktop\Dev-Cpp\MinGW64\lib\gcc\x86_64-w64-mingw32\4.9.2\include\c++\bits\c++0x_warning.h [Error] #error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
源代码:
void out1(){
while(1){
cout << "1";
Sleep(100);
}
}
signed main(){
HANDLE ht;
DWORD theadID;
ht = CreateThread(NULL,0,out1,NULL,0,NULL);
if(ht == NULL){
printf("error!!");
}
while(1){
cout << "2";
Sleep(100);
}
return 0;
}
求解答,或者是否能推荐一些关于多线程的优质 blog?