I'm completly new to C++, downloaded it today, and have a problem: getting started. I tried a little tutorial first and copied this code:
Code:
// my first program in C++

#include <iostream.h>

int main ()
{
  cout << "Hello World!";
  return 0;
}
in the Source Files > test.cpp window. Then I pressed F5 and got this error report:
------ Build started: Project: Test, Configuration: Debug Win32 ------
Compiling...
test.cpp
test.cpp(3) : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory
Build log was saved at "file://c:\Dominique\Visual Studio\Projects\Test\Test\Debug\BuildLog.htm"
Test - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
As you see the problem is that iostream.h doesn't exist. How can I get it? Is it part of a compiler or something? I use Visual C++ 2005 Express Beta.

Regards,
DvdHeijden