We are trying to use MS Visual Studio .NET to compile and link example
programs from a C++ book, in console mode, i.e. not MFC . Error message
i s:
c4.cpp(5) : fatal error C1083: Cannot open include file: 'iostream.h':
No such file or directory
The projects and solutions are in
C:\My Documents\Visual Studio Projects
What is problem? solution?
Should we use 'console' application? or Win32? or?
Thanks
e.g. of program :
// ctut3.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout << "Hello World!";
cout << "I'm a C++ program";
return 0;