为什么我用MinGW做习题的时候,加个标准头文件会报出8百多的错误
#include <iostream>#include <process.h>
#include "winbase.h"//加上这个包含文件后报出错误825条,这是为什么,难道标准头文件也有错误吗?我
using namespace std;
int main(){
srand(time(NULL));//本来想在这里添加参数为lpSystemTime.
const int l = rand();
cout<<l;
system("PAUSE");
}