Why doesn't a simple “Hello World”-style program compile with Turbo C++?
问题 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? 回答1: There's no problem with this