当我开始使用VS2013时,我创建了这样一个非常基本的应用程序。
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout << "Hello!";
return 0;
}
它崩溃了,当我评论#include <iostream>
它不再崩溃时。我对这个错误做过几次研究,但没有什么适合我的情况。这是错误:
感谢您的帮助。
答案 0 :(得分:0)
创建新项目后,如果将其创建为empty project
,我认为您不会遇到此问题。然后,您从头开始使用int main()
而不是_tmain(...)
并且不要使用using namespace std;
启动一个新的EMPTY项目并使用以下内容:
#include <iostream>
int main()
{
std::cout << "Hello World";
return 0;
}