编译用的是mingw,不知道为什么只要创建String就会报错,刚开始接触C++,哪位大神能够指导一下?
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
string fullName;
system("pause");
return 0;
}
下面是报错
[New Thread 22684.0x4918][New Thread 22684.0x396c][New Thread 22684.0x5dfc]
ERROR: During startup program exited with code 0xc0000139.
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
string fullName;
system("pause");
return 0;
}
下面是报错
[New Thread 22684.0x4918][New Thread 22684.0x396c][New Thread 22684.0x5dfc]
ERROR: During startup program exited with code 0xc0000139.