我在VC ++ 2010 express中写了经典的“Hello World”。
编辑1:
代码是:
#include "stdafx.h"
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "Hello from VC++ 2010 Express" << endl;
return 0;
}
当我点击“开始调试(F5)”图标时,没有任何反应。
当我点击“停止调试(shifh + F5)”时,IDE会因this错误而冻结约20至30秒。
如果我双击Release文件夹中的EXE或“Start without debugging(Ctrl + F5)”,程序运行时没有错误。
如何解决此错误?
提前谢谢
编辑2:
我已经一遍又一遍地完成了经典的“unistall&amp;重新安装”。