このコードは私にエラーを与えます:
#include "stdafx.h"
#include<iostream>
#include<string>
using namespace std;
int main()
{
string name;
cout << "enter your name: "<<endl;
cin >> name;
cout << name << endl;
return 0;
}
エラー: エラー LNK1104 はファイル 'c:\users\payman\documents\visual studio 2015\Projects\ConsoleApplication2\Debug\ConsoleApplication2.exe' を開けません
しかし、最初の cout ステートメントをコメントアウトすると機能します。理由がわかりません。