我正在使用visual studio 2013来构建一个C ++控制台应用程序。这是我的代码,它给出了一个错误。我需要为我的应用程序中的每个函数写入控制台。
// RAT.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
std::cout << "Process started";
return 0;
}
它出现以下错误,
错误:名称空间“std”没有成员“cout”
我不明白为什么这个基本的“cout”会出现这样的错误:( 请帮帮我,我完全糊涂了....
答案 0 :(得分:3)
您需要将#include <iostream>
作为标题。