I have started learning C++ for my programming class. I have downloaded this "Hello World" program:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World!";
return 0;
}
but Turbo C++ complains:
Error D:\HELLO.CPP 1: Unable to open include file 'IOSTREAM'
Error D:\HELLO.CPP 2: Declaration syntax error
Error D:\HELLO.CPP 6: Undefined symbol 'cout'
What's wrong with this very simple program? How can I correct these errors?