如何解决 vc2003的编译错误 fatal error C1083: Cannot open include file
fatal error C1083: Cannot open include file: 'iostream': No such file or directory在编译程序时就会出现上述问题。请教高手如何解决!
// stdafx.h : 标准系统包含文件的包含文件,
// 或是常用但不常更改的项目特定的包含文件
//
#pragma once
#include "iostream"
#include <tchar.h>
// TODO: 在此处引用程序要求的附加头文件
// abc.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout<<"Hello"<<endl;
getchar();
return 0;
}