I Downloaded a Borlad C++ Compiler. I installed it and tried to run a simple program.

#include <iostream.h>

void main()
{
cout << "Hello, Testing";
}

So under Borland, BCC55, and Bin, I save the file as "test.cpp"
Under a console window, I go to the same place as above and type
bcc32 test.cpp, and I get the following errors

Error E2209 test.cpp 1: Unable to open include file 'iostream.h'
Error E2451 test.cpp 5: Undefined symbol 'cout' in function main()
*** 2 errors in Compile ***

Any Suggestions?